Commit 75194f45 authored by vysheng's avatar vysheng

Update loop.c

parent 5f40cc4e
...@@ -524,7 +524,7 @@ int loop (void) { ...@@ -524,7 +524,7 @@ int loop (void) {
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
if (!strcmp (code, "call")) { if (!strcmp (code, "call")) {
printf ("You typed 0, switching to phone system.\n"); printf ("You typed \"call\", switching to phone system.\n");
do_phone_call (default_username); do_phone_call (default_username);
printf ("Calling you! Code: "); printf ("Calling you! Code: ");
continue; continue;
...@@ -576,7 +576,7 @@ int loop (void) { ...@@ -576,7 +576,7 @@ int loop (void) {
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
if (!strcmp (code, "call")) { if (!strcmp (code, "call")) {
printf ("You typed 0, switching to phone system.\n"); printf ("You typed \"call\", switching to phone system.\n");
do_phone_call (default_username); do_phone_call (default_username);
printf ("Calling you! Code: "); printf ("Calling you! Code: ");
continue; continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment