aboutsummaryrefslogtreecommitdiffstats
path: root/testing/portmidi/40-test_sysex.patch
blob: 66ca01d1f230ee8e6f6805e45afafc173ca2374d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- a/pm_test/sysex.c
+++ b/pm_test/sysex.c
@@ -171,7 +171,7 @@
 	    if (seconds == 0) seconds = 1;
             printf("Correctly received %d byte sysex message.\n", i);
 	    total_bytes += i;
-	    printf("Cummulative bytes/sec: %d\n", total_bytes / seconds);
+	    printf("Cummulative bytes/sec: %ld\n", total_bytes / seconds);
         }
     }
 cleanup:
@@ -231,6 +231,7 @@
         Pm_WriteSysEx(midi_out, 0, msg);
     }
     stop_time = Pt_Time();
+    printf("Delay was: %x\n", start_time - stop_time);
     Pm_Close(midi_out);
     return;
 }