Skip to content

Commit

Permalink
Fix compiler warning for gcc 4.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Jun 5, 2012
1 parent 2b4b41f commit 5eea00e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c_src/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define STACK_SIZE_INC 64
#define NUM_BUF_LEN 32

#ifdef WINDOWS || WIN32
#if WINDOWS || WIN32
#define snprintf _snprintf
#endif

Expand Down
2 changes: 1 addition & 1 deletion c_src/encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ do { \
} \
} while(0)

#ifdef WINDOWS || WIN32
#if WINDOWS || WIN32
#define inline __inline
#define snprintf _snprintf
#endif
Expand Down

0 comments on commit 5eea00e

Please sign in to comment.