Merge branch 'master' of gitosis@stbuehler.de:icfp11

This commit is contained in:
Stefan Bühler 2008-07-12 02:49:16 +02:00
commit 1e4dbb03d6
1 changed files with 3 additions and 2 deletions

View File

@ -77,9 +77,10 @@ void path_free(path* p){
command* tmp;
length = g_queue_get_length(p->commands);
if(length > 0){
fprintf(stderr,"freeing non-empty path\n");
fprintf(stderr,"Freeing non-empty path:\n");
while(g_queue_get_length(p->commands) > 0){
tmp = g_queue_pop_head(p->commands);
tmp = g_queue_pop_head(p->commands);
fprintf(stderr,"\tTimestamp: %d Turn: %d Accel: %d\n",tmp->ts,tmp->turn,tmp->accel);
command_free(tmp);
}
}