summaryrefslogtreecommitdiff
path: root/src/rep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rep.c')
-rw-r--r--src/rep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rep.c b/src/rep.c
index aec5220..6cc0849 100644
--- a/src/rep.c
+++ b/src/rep.c
@@ -295,7 +295,8 @@ int main(int argc, char* argv[])
/* Give some stats */
if(ret == 0 && g_showStatus)
- fprintf(stderr, "\n[%d replacements in %d files]\n", g_totalReplaces, g_totalFiles);
+ fprintf(stderr, "\n[%d replacements in %d files]\n",
+ (int)g_totalReplaces, (int)g_totalFiles);
/* Done! */
return ret <= 0 ? 0 : ret;