Samuel Thibault hace 9 años
padre
commit
181f60818d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/disk_ops/disk_stdio.c

+ 1 - 1
src/core/disk_ops/disk_stdio.c

@@ -239,7 +239,7 @@ static int starpu_stdio_full_read(void *base STARPU_ATTRIBUTE_UNUSED, void *obj,
 
 	int res = fseek(f, 0, SEEK_END);
 	STARPU_ASSERT_MSG(res == 0, "Stdio write failed");
-	ssize = = ftell(f);
+	ssize = ftell(f);
 	STARPU_ASSERT_MSG(ssize >= 0, "Stdio write failed");
 	*size = ssize;