Browse Source

Fix format

Samuel Thibault 8 years ago
parent
commit
0ba46bc87f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tools/gdbinit

+ 2 - 2
tools/gdbinit

@@ -1,7 +1,7 @@
 
 # StarPU --- Runtime system for heterogeneous multicore architectures.
 #
-# Copyright (C) 2010-2016  Université de Bordeaux
+# Copyright (C) 2010-2017  Université de Bordeaux
 # Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016  CNRS
 #
 # StarPU is free software; you can redistribute it and/or modify
@@ -258,7 +258,7 @@ define starpu-all-tasks
   while $l != &all_jobs_list
     set $j = (struct _starpu_job*) (((unsigned long) $l) - ((unsigned long) &((struct _starpu_job *)0)->all_submitted))
     set $task = $j->task
-    printf "task %p %s %s\n", $task, $j->task->name
+    printf "task %p %s\n", $task, $j->task->name
     set $l = $l->next
   end
 end