Browse Source

fix format

Samuel Thibault 13 years ago
parent
commit
3baac7fd37
1 changed files with 2 additions and 2 deletions
  1. 2 2
      socl/src/command.c

+ 2 - 2
socl/src/command.c

@@ -76,9 +76,9 @@ void command_graph_dump_ex(cl_command cmd) {
 	for (i=0; i<cmd->num_events; i++)
 		command_graph_dump_ex(cmd->events[i]->command);
 
-	printf("CMD %lx TYPE %d DEPS", cmd, cmd->typ);
+	printf("CMD %p TYPE %d DEPS", cmd, cmd->typ);
 	for (i=0; i<cmd->num_events; i++)
-		printf(" %lx", cmd->events[i]->command);
+		printf(" %p", cmd->events[i]->command);
 	printf("\n");
 
 }