# HG changeset patch # User diego # Date 1199635375 0 # Node ID ffb5d8bb96b319352f10beb966172d2c9f1f7811 # Parent cb12e3352bf55e9fa7ce665a4a30bc4c30fe27cc Rename two structures, identifiers starting with _[A-Z] are reserved. diff -r cb12e3352bf5 -r ffb5d8bb96b3 framehook.c --- a/framehook.c Sun Jan 06 14:18:13 2008 +0000 +++ b/framehook.c Sun Jan 06 16:02:55 2008 +0000 @@ -28,8 +28,8 @@ #endif -typedef struct _FrameHookEntry { - struct _FrameHookEntry *next; +typedef struct FrameHookEntry { + struct FrameHookEntry *next; FrameHookConfigureFn Configure; FrameHookProcessFn Process; FrameHookReleaseFn Release;