summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-07-29 14:56:57 -0400
committerpommicket <pommicket@gmail.com>2022-07-29 14:56:57 -0400
commit296b4eca9479bdd1302c4b2d910f3ddd8c955fb9 (patch)
tree2d7356625adfa742e423251a54bf6ec7241cdf4e /main.c
parent1a9561c06ba0197b2b307a61443775f9fd11165b (diff)
indent-with-spaces
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 60bc230..96b4062 100644
--- a/main.c
+++ b/main.c
@@ -84,12 +84,12 @@ static void die(char const *fmt, ...) {
va_start(args, fmt);
vsnprintf(buf, sizeof buf - 1, fmt, args);
va_end(args);
-
+
// show a message box, and if that fails, print it
if (SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Error", buf, NULL) < 0) {
debug_println("%s\n", buf);
}
-
+
exit(EXIT_FAILURE);
}