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:
Matthew Allum 2008-06-26 09:35:31 +00:00
parent e7a7307b49
commit f5509cb0ec
2 changed files with 6 additions and 1 deletions

View File

@ -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> 2008-06-25 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Post release bump to 0.7.5. * configure.ac: Post release bump to 0.7.5.

View File

@ -156,7 +156,7 @@ main (int argc, char **argv)
if (argc < 2) if (argc < 2)
g_error ("usage: %s <window id>", argv[0]); 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 (); stage = clutter_stage_get_default ();
clutter_stage_set_color (CLUTTER_STAGE (stage), &gry); clutter_stage_set_color (CLUTTER_STAGE (stage), &gry);