2008-06-26 Matthew Allum <mallum@openedhand.com>
* tests/test-pixmap.c: (main): Use strtol on arg as to take hex values. Tweak from James Ketrenos
This commit is contained in:
parent
e7a7307b49
commit
f5509cb0ec
@ -1,3 +1,8 @@
|
||||
2008-06-26 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* tests/test-pixmap.c: (main):
|
||||
Use strtol on arg as to take hex values. Tweak from James Ketrenos
|
||||
|
||||
2008-06-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* configure.ac: Post release bump to 0.7.5.
|
||||
|
@ -156,7 +156,7 @@ main (int argc, char **argv)
|
||||
if (argc < 2)
|
||||
g_error ("usage: %s <window id>", argv[0]);
|
||||
|
||||
win_remote = atol(argv[1]);
|
||||
win_remote = strtol(argv[1], NULL, 0);
|
||||
|
||||
stage = clutter_stage_get_default ();
|
||||
clutter_stage_set_color (CLUTTER_STAGE (stage), &gry);
|
||||
|
Loading…
Reference in New Issue
Block a user