diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 10:08:49 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 10:08:49 -0500 |
commit | bf3a29fbe20b0b2bd0339c76c3b279cea63b59f2 (patch) | |
tree | 9949cb71d4bd3cd7c8a17e8a30a11e4a5fc95f10 | |
parent | 1d300634c5550043c0b80a22f8665d305ff079f4 (diff) | |
download | stasis-bf3a29fbe20b0b2bd0339c76c3b279cea63b59f2.tar.gz |
Print the splash banner before the first msg() is shown
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -184,6 +184,8 @@ int main(int argc, char *argv[], char *arge[]) { exit(1); } + printf(BANNER, VERSION, AUTHOR); + msg(OMC_MSG_L1, "Initializing\n"); // Set up PREFIX/etc directory information |