Skip to content

Commit a8f4a71

Browse files
committed
Remove extraneous token concatenation operator.
Fixes #504.
1 parent d0d4ea3 commit a8f4a71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/gl_funcs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ struct glFuncPtrs gl;
108108
#define GL_FUNCTION(type, func, required) \
109109
if ( wglGetProcAddressPtr ) \
110110
gl.func = (type)wglGetProcAddressPtr(#func); \
111-
if ( !gl.##func) \
111+
if ( !gl.func) \
112112
gl.func = (type)LoadProcAddr(ktxOpenGLModuleHandle, #func); \
113113
if ( !gl.func && required) { \
114114
fprintf(stderr, noloadmsg, #func); \

0 commit comments

Comments
 (0)