diff options
| author | Robert Norton | 2018-06-28 16:56:28 +0100 |
|---|---|---|
| committer | Robert Norton | 2018-06-28 16:56:39 +0100 |
| commit | ea1c73399ac26b2750b3ab04424f46307027b19f (patch) | |
| tree | 5fc333067b642df5837da2525ede2cdbe868122d /lib/rts.c | |
| parent | 854ec08dd95363d1d43e0af9fc7a5d3e678e1aa8 (diff) | |
Fix warning in rts.c
Diffstat (limited to 'lib/rts.c')
| -rw-r--r-- | lib/rts.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ unit sail_assert(bool b, sail_string msg) unit sail_exit(unit u) { - fprintf(stderr, "[Sail] Exiting after %lld cycles\n", g_cycle_count); + fprintf(stderr, "[Sail] Exiting after %" PRIu64 " cycles\n", g_cycle_count); exit(EXIT_SUCCESS); return UNIT; } |
