Skip to content

Commit

Permalink
Fix another compiler warning in src/moar.c
Browse files Browse the repository at this point in the history
  • Loading branch information
samcv committed Mar 29, 2017
1 parent 8be688b commit 90717d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moar.c
Expand Up @@ -234,7 +234,7 @@ MVMInstance * MVM_vm_create_instance(void) {
dynvar_log = getenv("MVM_DYNVAR_LOG");
if (dynvar_log && strlen(dynvar_log)) {
instance->dynvar_log_fh = fopen_perhaps_with_pid(dynvar_log, "w");
fprintf(instance->dynvar_log_fh, "+ x 0 0 0 0 0 %lu\n", uv_hrtime());
fprintf(instance->dynvar_log_fh, "+ x 0 0 0 0 0 %"PRIu64"\n", uv_hrtime());
fflush(instance->dynvar_log_fh);
instance->dynvar_log_lasttime = uv_hrtime();
}
Expand Down

0 comments on commit 90717d8

Please sign in to comment.