diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-02 16:22:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-02 16:22:43 +0200 |
commit | 8823ffb8e0cd34615f44e5d241030c57a7465153 (patch) | |
tree | 13c1258ce297fee16b5a96ca8b744faec9b1dddb /wavfile.h | |
parent | 2316e62c612f42ea80f309b1a1c03103fc002707 (diff) | |
download | etisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.tar.gz etisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.tar.bz2 etisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.zip |
Fix compilation issue on CentOS 7v1.0.0
Apparently PRId64 is not defined in inttypes.h
Diffstat (limited to 'wavfile.h')
-rw-r--r-- | wavfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ http://www.nd.edu/~dthain/courses/cse20211/fall2013/wavfile #define WAVFILE_H #include <stdio.h> -#include <inttypes.h> +#include <cinttypes> FILE * wavfile_open( const char *filename, int rate ); void wavfile_write( FILE *file, short data[], int length ); |