Skip to content

Commit

Permalink
Fix missing format string.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Aug 26, 2023
1 parent 29142a3 commit d09b92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/hcache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ void hcache_done()
fputs( "\n", f );
++header_count;
}
write_netstring( f, CACHE_RECORD_END );
write_netstring( f, "%s", CACHE_RECORD_END );

if ( DEBUG_HEADER )
out_printf( "hcache written to %s. %d dependencies, %.0f%% hit rate\n",
Expand Down

0 comments on commit d09b92f

Please sign in to comment.