diff options
author | Travis Howell | 2006-03-09 09:51:42 +0000 |
---|---|---|
committer | Travis Howell | 2006-03-09 09:51:42 +0000 |
commit | ff676b0b54ef475bd314aa8f93a15929f2a7dd92 (patch) | |
tree | 892c702996a2f383f02de90f2bec5cf2fb08ef46 | |
parent | 47f66f80b951adb6bf80b3056918798448dca4c1 (diff) | |
download | scummvm-rg350-ff676b0b54ef475bd314aa8f93a15929f2a7dd92.tar.gz scummvm-rg350-ff676b0b54ef475bd314aa8f93a15929f2a7dd92.tar.bz2 scummvm-rg350-ff676b0b54ef475bd314aa8f93a15929f2a7dd92.zip |
Correct GCC_PACK define for non-GCC
svn-id: r21160
-rw-r--r-- | common/scummsys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 509b9a3d69..54e10f3962 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -371,7 +371,7 @@ #define NORETURN __attribute__((__noreturn__)) #define GCC_PRINTF(x,y) __attribute__((format(printf, x, y))) #else - #define GCC_PACK(x,y) + #define GCC_PACK #define GCC_PRINTF(x,y) #endif |