small update
authorroot <root@xenomailinux.localdomain>
Thu, 1 Oct 2015 18:23:50 +0000 (20:23 +0200)
committerroot <root@xenomailinux.localdomain>
Thu, 1 Oct 2015 18:23:50 +0000 (20:23 +0200)
mart/ex10/ex10a.c

index c0781f7..4b0a0a4 100644 (file)
@@ -26,7 +26,7 @@ void taskf(void *arg)
        FILE *file;
        file = fopen("ex10a.csv", "w");
        for(i = 0; i<SAMPLES-1; i++){
-               fprintf(file, "%u\t%llu\n", i, times[i+1]-times[i]);
+               fprintf(file, "%u,%llu\n", i, times[i+1]-times[i]);
        }
        fclose(file);
 }