diff options
author | marha <marha@users.sourceforge.net> | 2012-10-11 10:23:20 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-10-11 10:23:20 +0200 |
commit | d863340171e4d6c19e9ef9fdc986ddc1b5e1e63e (patch) | |
tree | a19e7aa18e01c62649f214a4294bd24340152c9a /mesalib/src/mapi/glapi/gen/gl_table.py | |
parent | 30c05ead4fe1b6a341d5b585e3a6b5d255edf650 (diff) | |
download | vcxsrv-d863340171e4d6c19e9ef9fdc986ddc1b5e1e63e.tar.gz vcxsrv-d863340171e4d6c19e9ef9fdc986ddc1b5e1e63e.tar.bz2 vcxsrv-d863340171e4d6c19e9ef9fdc986ddc1b5e1e63e.zip |
Solved problems introduced in merge
Diffstat (limited to 'mesalib/src/mapi/glapi/gen/gl_table.py')
-rw-r--r-- | mesalib/src/mapi/glapi/gen/gl_table.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesalib/src/mapi/glapi/gen/gl_table.py b/mesalib/src/mapi/glapi/gen/gl_table.py index 5b7a5564c..83b6a5bd8 100644 --- a/mesalib/src/mapi/glapi/gen/gl_table.py +++ b/mesalib/src/mapi/glapi/gen/gl_table.py @@ -108,11 +108,11 @@ class PrintRemapTable(gl_XML.gl_print_base): return def printBody(self, api): - print '#ifdef _MSC_VER' - print '#ifndef INLINE' - print '#define INLINE __inline' - print '#endif' - print '#endif' + print '#ifdef _MSC_VER' + print '#ifndef INLINE' + print '#define INLINE __inline' + print '#endif' + print '#endif' print '#define CALL_by_offset(disp, cast, offset, parameters) \\' print ' (*(cast (GET_by_offset(disp, offset)))) parameters' print '#define GET_by_offset(disp, offset) \\' |