Browse Source

avoid issues with potential % in tasks.rec

Samuel Thibault 8 years ago
parent
commit
f0f75282e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/starpu_tasks_rec_complete.c

+ 1 - 1
tools/starpu_tasks_rec_complete.c

@@ -164,7 +164,7 @@ int main(int argc, char *argv[]) {
 		{
 			already_there = 1;
 		}
-		fprintf(output, s);
+		fprintf(output, "%s", s);
 	}
 
 	if (fclose(output))