diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-13 01:41:25 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-13 01:41:25 +0000 |
| commit | 7fc226b65473b81870fd7135005adbc2482ef193 (patch) | |
| tree | 726ca8ce825caa2aab71de8912575df21ebcdb98 | |
| parent | 120ed7a650c31fc7aa6443f0bd408f041e2d8a86 (diff) | |
proper code style
| -rw-r--r-- | otk/display.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/display.cc b/otk/display.cc index 59a48aee..c117699b 100644 --- a/otk/display.cc +++ b/otk/display.cc @@ -100,9 +100,9 @@ line argument.\n\n")); printf(_("Couldn't mark display connection as close-on-exec.\n\n")); ::exit(1); } - if (! XSupportsLocale()) + if (!XSupportsLocale()) printf(_("X server does not support locale.\n")); - if (XSetLocaleModifiers("") == NULL) + if (!XSetLocaleModifiers("")) printf(_("Cannot set locale modifiers for the X server.\n")); // set our error handler for X errors |
