Browse Source

Fix compiler warning for gcc 4.4.3

pull/29/head 0.4.5
Paul J. Davis 13 years ago
parent
commit
5eea00e497
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      c_src/decoder.c
  2. +1
    -1
      c_src/encoder.c

+ 1
- 1
c_src/decoder.c View File

@ -16,7 +16,7 @@
#define STACK_SIZE_INC 64 #define STACK_SIZE_INC 64
#define NUM_BUF_LEN 32 #define NUM_BUF_LEN 32
#ifdef WINDOWS || WIN32
#if WINDOWS || WIN32
#define snprintf _snprintf #define snprintf _snprintf
#endif #endif

+ 1
- 1
c_src/encoder.c View File

@ -20,7 +20,7 @@ do { \
} \ } \
} while(0) } while(0)
#ifdef WINDOWS || WIN32
#if WINDOWS || WIN32
#define inline __inline #define inline __inline
#define snprintf _snprintf #define snprintf _snprintf
#endif #endif

Loading…
Cancel
Save