Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1398 → Rev 1399

/demos/trunk/input/input.c
427,7 → 427,7
soft_task_def_usemath(mp);
pid = task_create("Key_Print", my_getch, &mp, NULL);
if (pid == NIL) {
perror("Could not create task <Key_Print>");
sys_shutdown_message("Could not create task <Key_Print>\n");
sys_end();
} else
task_activate(pid);
441,7 → 441,7
soft_task_def_usemath(mp);
pid = task_create("Joy_Print", my_getjoy, &mp, NULL);
if (pid == NIL) {
perror("Could not create task <Joy_Print>");
sys_shutdown_message("Could not create task <Joy_Print>\n");
sys_end();
} else
task_activate(pid);