Update loop.c

This commit is contained in:
vysheng 2014-02-25 23:31:27 +03:00
parent 5f40cc4e4e
commit 75194f4552

4
loop.c
View File

@ -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) {
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;