Remove trailing white space.

This was accomplished with this command.

find . -type f -not -iwholename '*.git*' -exec sed -i 's/[ \t]*$//' {} \;
This commit is contained in:
orbea 2017-12-16 09:03:08 -08:00
parent 9c2bf4f227
commit 84e4462bd9
8 changed files with 10 additions and 10 deletions

View file

@ -13,7 +13,7 @@ eq_gains = "6 9 12 7 6 5 7 9 11 6 0"
reverb_damping = 0.8 reverb_damping = 0.8
reverb_roomwidth = 0.25 reverb_roomwidth = 0.25
reverb_roomsize = 0.25 reverb_roomsize = 0.25
# IIR - filters out some harsh sounds on the upper end # IIR - filters out some harsh sounds on the upper end
iir_type = RIAA_CD iir_type = RIAA_CD

View file

@ -64,7 +64,7 @@ asflags := $(ASFLAGS) -fPIC $(extra_flags)
objects := objects :=
ifeq (1,$(use_neon)) ifeq (1,$(use_neon))
ASMFLAGS := -INEON/asm ASMFLAGS := -INEON/asm
asflags += -mfpu=neon asflags += -mfpu=neon
endif endif

View file

@ -39,7 +39,7 @@
process_sinc_neon_asm: process_sinc_neon_asm:
_process_sinc_neon_asm: _process_sinc_neon_asm:
push {r4, lr} push {r4, lr}
vmov.f32 q0, #0.0 vmov.f32 q0, #0.0
vmov.f32 q8, #0.0 vmov.f32 q8, #0.0
@ -68,7 +68,7 @@ _process_sinc_neon_asm:
vadd.f32 d16, d16, d17 vadd.f32 d16, d16, d17
vpadd.f32 d0, d0, d16 vpadd.f32 d0, d0, d16
vst1.f32 d0, [r0] vst1.f32 d0, [r0]
pop {r4, pc} pop {r4, pc}
#endif #endif

View file

@ -2,7 +2,7 @@
""" """
License statement applies to this file (glgen.py) only. License statement applies to this file (glgen.py) only.
""" """
""" """
Permission is hereby granted, free of charge, Permission is hereby granted, free of charge,

View file

@ -2,7 +2,7 @@
""" """
License statement applies to this file (glgen.py) only. License statement applies to this file (glgen.py) only.
""" """
""" """
Permission is hereby granted, free of charge, Permission is hereby granted, free of charge,

View file

@ -62,7 +62,7 @@ CC := $(compiler)
CXX := $(subst CC,++,$(compiler)) CXX := $(subst CC,++,$(compiler))
flags := -fPIC $(extra_flags) -I$(LIBRETRO_COMM_DIR)/include flags := -fPIC $(extra_flags) -I$(LIBRETRO_COMM_DIR)/include
asflags := -fPIC $(extra_flags) asflags := -fPIC $(extra_flags)
LDFLAGS := LDFLAGS :=
flags += -std=c99 -DMD5_BUILD_UTILITY -DSHA1_BUILD_UTILITY flags += -std=c99 -DMD5_BUILD_UTILITY -DSHA1_BUILD_UTILITY

View file

@ -97,7 +97,7 @@ bool filestream_exists(const char *path)
if (!path || !*path) if (!path || !*path)
return false; return false;
dummy = filestream_open(path, dummy = filestream_open(path,
RETRO_VFS_FILE_ACCESS_READ, RETRO_VFS_FILE_ACCESS_READ,
RETRO_VFS_FILE_ACCESS_HINT_NONE); RETRO_VFS_FILE_ACCESS_HINT_NONE);

View file

@ -124,10 +124,10 @@ int64_t retro_vfs_file_seek_internal(libretro_vfs_implementation_file *stream, i
#ifdef HAVE_MMAP #ifdef HAVE_MMAP
/* Need to check stream->mapped because this function is /* Need to check stream->mapped because this function is
* called in filestream_open() */ * called in filestream_open() */
if (stream->mapped && stream->hints & if (stream->mapped && stream->hints &
RETRO_VFS_FILE_ACCESS_HINT_FREQUENT_ACCESS) RETRO_VFS_FILE_ACCESS_HINT_FREQUENT_ACCESS)
{ {
/* fseek() returns error on under/overflow but /* fseek() returns error on under/overflow but
* allows cursor > EOF for * allows cursor > EOF for
read-only file descriptors. */ read-only file descriptors. */
switch (whence) switch (whence)