summaryrefslogtreecommitdiff
path: root/textscreen/txt_window_action.c
diff options
context:
space:
mode:
authorSimon Howard2006-09-21 11:49:13 +0000
committerSimon Howard2006-09-21 11:49:13 +0000
commite903ecbffbc1a90f9206dbb49e6727e58889da3d (patch)
treeeb3f4b5a078dc66c3c521a9449a284d59a5896ba /textscreen/txt_window_action.c
parent75595d1b7f60755e6e10300132fd095cfa994862 (diff)
downloadchocolate-doom-e903ecbffbc1a90f9206dbb49e6727e58889da3d.tar.gz
chocolate-doom-e903ecbffbc1a90f9206dbb49e6727e58889da3d.tar.bz2
chocolate-doom-e903ecbffbc1a90f9206dbb49e6727e58889da3d.zip
Use NULL for initialising pointers rather than 0.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 644
Diffstat (limited to 'textscreen/txt_window_action.c')
-rw-r--r--textscreen/txt_window_action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_window_action.c b/textscreen/txt_window_action.c
index 91ecdcde..24a71ccd 100644
--- a/textscreen/txt_window_action.c
+++ b/textscreen/txt_window_action.c
@@ -98,7 +98,7 @@ txt_widget_class_t txt_window_action_class =
TXT_WindowActionKeyPress,
TXT_WindowActionDestructor,
TXT_WindowActionMousePress,
- 0,
+ NULL,
};
txt_window_action_t *TXT_NewWindowAction(int key, char *label)