aboutsummaryrefslogtreecommitdiff
path: root/devtools/skycpt/AsciiCptCompile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/skycpt/AsciiCptCompile.cpp')
-rw-r--r--devtools/skycpt/AsciiCptCompile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/skycpt/AsciiCptCompile.cpp b/devtools/skycpt/AsciiCptCompile.cpp
index 154c13b8cd..f339f6816c 100644
--- a/devtools/skycpt/AsciiCptCompile.cpp
+++ b/devtools/skycpt/AsciiCptCompile.cpp
@@ -49,7 +49,7 @@ void doCompile(FILE *inf, FILE *debOutf, FILE *resOutf, TextFile *cptDef, FILE *
int main(int argc, char* argv[])
{
uint8 testBuf[4] = { 0x11, 0x22, 0x33, 0x44 };
- if (*(uint32*)testBuf != 0x44332211) {
+ if (*(uint32 *)testBuf != 0x44332211) {
printf("Sorry, this program only works on little endian systems.\nGoodbye.\n");
return 0;
}