summaryrefslogtreecommitdiff
path: root/ouija.c
diff options
context:
space:
mode:
Diffstat (limited to 'ouija.c')
-rw-r--r--ouija.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ouija.c b/ouija.c
index 44e6cc9..aab31c5 100644
--- a/ouija.c
+++ b/ouija.c
@@ -1,6 +1,6 @@
-#include "session.h"
#include <stdio.h>
#include <stdlib.h>
+#include "session.h"
int main(int argc, char **argv)
{
@@ -27,6 +27,10 @@ int main(int argc, char **argv)
startSession(dictionary);
fclose(dictionary);
}
+ else
+ {
+ printf("No Dictionary Found\n");
+ }
return 0;
}