diff options
author | David 'Digit' Turner <digit@google.com> | 2014-03-27 17:23:17 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2014-04-01 10:22:22 +0200 |
commit | 3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2 (patch) | |
tree | 99ffd8b7e5ca999624bd285fa2cbddfbd3bf6e6f /emulator/opengl/host/tools | |
parent | d06559227bc6071c96572334d2a2e3f6eb4de96d (diff) | |
download | sdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.zip sdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.tar.gz sdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.tar.bz2 |
emulator/opengl: Fix misc. compiler warnings.
These warnings appear when building the sources through the emulator's
standalone build system, not the platform one.
Change-Id: Ib5d51cf6211f32763be00c7436ae14c06f76b436
Diffstat (limited to 'emulator/opengl/host/tools')
-rw-r--r-- | emulator/opengl/host/tools/emugen/ApiGen.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/emulator/opengl/host/tools/emugen/ApiGen.cpp b/emulator/opengl/host/tools/emugen/ApiGen.cpp index 2c331b9..6d6742d 100644 --- a/emulator/opengl/host/tools/emugen/ApiGen.cpp +++ b/emulator/opengl/host/tools/emugen/ApiGen.cpp @@ -776,12 +776,10 @@ int ApiGen::genDecoderImpl(const std::string &filename) \tchar lastCall[256] = {0}; \n\ #endif \n\ \twhile ((len - pos >= 8) && !unknownOpcode) { \n\ -\t\tvoid *params[%u]; \n\ \t\tint opcode = *(int *)ptr; \n\ \t\tunsigned int packetLen = *(int *)(ptr + 4);\n\ \t\tif (len - pos < packetLen) return pos; \n\ -\t\tswitch(opcode) {\n", - (unsigned) m_maxEntryPointsParams); +\t\tswitch(opcode) {\n"); for (size_t f = 0; f < n; f++) { enum Pass_t { PASS_TmpBuffAlloc = 0, PASS_MemAlloc, PASS_DebugPrint, PASS_FunctionCall, PASS_Epilog, PASS_LAST }; |