summaryrefslogtreecommitdiff
path: root/render/test.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 20:25:34 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 20:25:34 +0000
commit0a69cfc6d2cf672634e95d5eb2015434dd924abc (patch)
treeef28312c548d2df4aa44b3e4cd29490427234767 /render/test.c
parentb10548f0ddf7ac9deb85372332686c6d8651a1f6 (diff)
add strict ansi compliance
Diffstat (limited to 'render/test.c')
-rw-r--r--render/test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/render/test.c b/render/test.c
index b42f553d..459d2662 100644
--- a/render/test.c
+++ b/render/test.c
@@ -41,11 +41,11 @@ int main()
win =
XCreateWindow(ob_display, RootWindow(ob_display, 0)
, 10, 10, w, h, 10,
- CopyFromParent, // depth
- CopyFromParent, // class
- CopyFromParent, // visual
- 0, // valuemask
- 0); // attributes
+ CopyFromParent, /* depth */
+ CopyFromParent, /* class */
+ CopyFromParent, /* visual */
+ 0, /* valuemask */
+ 0); /* attributes */
XMapWindow(ob_display, win);
XSelectInput(ob_display, win, ExposureMask | StructureNotifyMask);
root = RootWindow (ob_display, DefaultScreen (ob_display));