Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1546 → Rev 1547

/demos/trunk/base/fly.c
18,11 → 18,11
 
/**
------------
CVS : $Id: fly.c,v 1.9 2004-06-15 14:10:23 giacomo Exp $
CVS : $Id: fly.c,v 1.10 2005-01-08 14:31:38 pj Exp $
 
File: $File$
Revision: $Revision: 1.9 $
Last update: $Date: 2004-06-15 14:10:23 $
Revision: $Revision: 1.10 $
Last update: $Date: 2005-01-08 14:31:38 $
------------
**/
 
184,8 → 184,7
pid = task_create("fly", fly, &m, NULL);
if (pid == NIL) {
sys_shutdown_message("Could not create task <fly>");
sys_end();
return 0;
exit(1);
}
task_activate(pid);
i++;
194,7 → 193,7
 
} while (c != ESC);
 
sys_end();
exit(0);
 
return 0;