summaryrefslogtreecommitdiff
path: root/lwlib/lwlib.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-08-03 20:09:56 +0000
committerGerd Moellmann <gerd@gnu.org>2000-08-03 20:09:56 +0000
commit40c6c44ed3ecc336691ed15b4116033f5e7f6f61 (patch)
tree997607a2f12c6a3591d4d91f0f8a4b4e5a47b6fd /lwlib/lwlib.c
parenta20b907ab70b84aeae43d5555b46d930e7ceb62c (diff)
downloademacs-40c6c44ed3ecc336691ed15b4116033f5e7f6f61.tar.gz
Use NULL at the end of the
variable argument lists of XtVaSetValues and XtVaGetValues functions because 0 is not sufficient on systems where sizeof (int) < sizeof (void *).
Diffstat (limited to 'lwlib/lwlib.c')
-rw-r--r--lwlib/lwlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c
index 82de7be3daf..eb0804a480e 100644
--- a/lwlib/lwlib.c
+++ b/lwlib/lwlib.c
@@ -1383,11 +1383,11 @@ show_one_widget_busy (w, flag)
XtVaGetValues (widget_to_invert,
XtNforeground, &foreground,
XtNbackground, &background,
- 0);
+ NULL);
XtVaSetValues (widget_to_invert,
XtNforeground, background,
XtNbackground, foreground,
- 0);
+ NULL);
}
void