summaryrefslogtreecommitdiff
path: root/tools/aif2pcm/main.c
diff options
context:
space:
mode:
authorgarakmon <thomastaps194@comcast.net>2018-06-16 18:49:27 -0400
committergarakmon <thomastaps194@comcast.net>2018-06-16 18:49:27 -0400
commit13ed20c6e3cc2a5029d33df39cffbcc219fbacf1 (patch)
treee7397229faf97e5655d483cbb8739b6d14b538fa /tools/aif2pcm/main.c
parent46f9b83fe54b2c0b2a81c60de143ba0abcb75ec9 (diff)
compiler fixes
The compiler flag -s is not necessary and causes build failure on some systems (macOS, clang compilers) due to it being deprecated. Additionally, on those same systems, tools/aif2pcm/main.c failed to compile due to an overly cautious compiler not liking some struct declarations. These changes afaik do not affect other builds.
Diffstat (limited to 'tools/aif2pcm/main.c')
-rw-r--r--tools/aif2pcm/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aif2pcm/main.c b/tools/aif2pcm/main.c
index fbb024a1d..b6287a1dd 100644
--- a/tools/aif2pcm/main.c
+++ b/tools/aif2pcm/main.c
@@ -469,12 +469,12 @@ do { \
void aif2pcm(const char *aif_filename, const char *pcm_filename, bool compress)
{
struct Bytes *aif = read_bytearray(aif_filename);
- AifData aif_data = {0};
+ AifData aif_data;
read_aif(aif, &aif_data);
int header_size = 0x10;
struct Bytes *pcm;
- struct Bytes output = {0};
+ struct Bytes output;
if (compress)
{