Delete short commit hash from curses interface version info.
authorDavid Griffith <dave@661.org>
Tue, 31 Jul 2018 10:13:46 +0000 (03:13 -0700)
committerDavid Griffith <dave@661.org>
Wed, 1 Aug 2018 04:33:47 +0000 (21:33 -0700)
src/curses/ux_init.c

index 85f02c169c16aad0af607c4fe247a4cf728dd1d9..9502eea2d19b4ae2cd7b0f85bf224e9bc2eb4924 100644 (file)
@@ -1133,17 +1133,16 @@ error:
 
 static void print_version(void)
 {
-    printf("FROTZ V%s\t   ", GIT_TAG);
+    printf("FROTZ V%s\t", GIT_TAG);
 #ifndef NO_SOUND
         printf("Audio output enabled.");
 #else
        printf("Audio output disabled.");
 #endif
-    printf("\nBuild:\t\t   %s\n", build_timestamp);
-    printf("Git commit:\t   %s\n", GIT_HASH);
-    printf("Git commit short:  %s\n", GIT_HASH_SHORT);
-    printf("Git tag:\t   %s\n", GIT_TAG);
-    printf("Git branch:\t   %s\n", GIT_BRANCH);
+    printf("\nBuild:\t\t%s\n", build_timestamp);
+    printf("Git commit:\t%s\n", GIT_HASH);
+    printf("Git tag:\t%s\n", GIT_TAG);
+    printf("Git branch:\t%s\n", GIT_BRANCH);
     printf("  Frotz was originally written by Stefan Jokisch.\n");
     printf("  It complies with standard 1.0 of Graham Nelson's specification.\n");
     printf("  It was ported to Unix by Galen Hazelwood.\n");