aboutsummaryrefslogtreecommitdiff
path: root/src/spm.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-12-28 12:28:25 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-12-28 12:28:25 -0500
commit5a754bcdc0f5e432c1d7cd358c74dfb2d6f0f1ea (patch)
treea60ffaacdaa394f8a9772220b50a47d5f51bddc6 /src/spm.c
parenta267f8258162fdab350944676b2e71f858c3de51 (diff)
downloadspmc-5a754bcdc0f5e432c1d7cd358c74dfb2d6f0f1ea.tar.gz
Fixes:
* doxygen config * doxygen @file directives * corrected stupid strip() implemention * corrected strip usage by config parser. wrong pointer.
Diffstat (limited to 'src/spm.c')
-rw-r--r--src/spm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/spm.c b/src/spm.c
index bca6353..ef3e61d 100644
--- a/src/spm.c
+++ b/src/spm.c
@@ -288,11 +288,11 @@ int main(int argc, char *argv[]) {
}
- int banner_size = 77;
- printf("# ");
+ int banner_size = 79;
+ putchar('#');
print_banner("-", banner_size);
printf("# %-20s %-20s %-20s %-20s\n", "name", "version", "revision", "size");
- printf("# ");
+ putchar('#');
print_banner("-", banner_size);
if (RUNTIME_SEARCH) {