RaspiStill.c : Fixed a typo
authorJames Hughes <james.hughes@raspberrypi.org>
Tue, 24 Jan 2017 10:14:18 +0000 (10:14 +0000)
committerPhil Elwell <pelwell@users.noreply.github.com>
Tue, 24 Jan 2017 10:26:42 +0000 (10:26 +0000)
Missing n in \n when displaying app name

host_applications/linux/apps/raspicam/RaspiStill.c

index d69ffd8f4b895aa997b8d83f1ff6680185178e08..f6e5f0ca2a3dbcde358e2a321b140434252be116 100644 (file)
@@ -1796,7 +1796,7 @@ int main(int argc, const char **argv)
    // Do we have any parameters
    if (argc == 1)
    {
-      fprintf(stdout, "\%s Camera App %s\n\n", basename(argv[0]), VERSION_STRING);
+      fprintf(stdout, "\n%s Camera App %s\n\n", basename(argv[0]), VERSION_STRING);
 
       display_valid_parameters(basename(argv[0]));
       exit(EX_USAGE);