aboutsummaryrefslogtreecommitdiff
path: root/src/mazerator.c
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-01-07 12:56:37 +0100
committerHampusM <hampus@hampusmat.com>2022-01-07 12:56:37 +0100
commit977c46591583a59f8d51773ffaba08b5076a426e (patch)
treea04727c2075cebe0ae8b93728c9071e164a17c43 /src/mazerator.c
parent2876d7efdeac80085a04b8f1c509065bf323f70e (diff)
style: fix minor code formatting issues
Diffstat (limited to 'src/mazerator.c')
-rw-r--r--src/mazerator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mazerator.c b/src/mazerator.c
index 593d518..c624dc3 100644
--- a/src/mazerator.c
+++ b/src/mazerator.c
@@ -1,5 +1,5 @@
-#include "maze.h"
#include "grid.h"
+#include "maze.h"
#include "position.h"
#include "utils.h"
#include <getopt.h>
@@ -68,7 +68,7 @@ int main(int argc, char *argv[])
{
case 'w':
maze_width = str_to_uint(optarg, &err);
-
+
if (err != NULL)
optarg_error(arg, err);
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
break;
case 'h':
maze_height = str_to_uint(optarg, &err);
-
+
if (err != NULL)
optarg_error(arg, err);