aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--psplash.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 325b12f..088fe78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-12-22 Matthew Allum <mallum@openedhand.com>
+ * psplash.c:
+ Whoops, actually set the angle config option
+
+2006-12-22 Matthew Allum <mallum@openedhand.com>
+
* psplash-fb.c:
* psplash-fb.h:
* psplash.c:
diff --git a/psplash.c b/psplash.c
index 7964cfb..3d79e8e 100644
--- a/psplash.c
+++ b/psplash.c
@@ -197,12 +197,14 @@ main (int argc, char** argv)
if (!strcmp(argv[i],"-a") || !strcmp(argv[i],"--angle"))
{
if (++i > argc) goto fail;
- angle = atoi(argv[0]);
+ angle = atoi(argv[i]);
continue;
}
fail:
- fprintf(stderr, "Usage: %s [-n|--no-console-switch] [-a|--angle <0|90|180|270>]\n", argv[0]);
+ fprintf(stderr,
+ "Usage: %s [-n|--no-console-switch] [-a|--angle <0|90|180|270>]\n",
+ argv[0]);
exit(-1);
}