From e74a8a7c621f8394ac73e629c1a2565601c6a862 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 18 Mar 2007 02:27:33 +0000 Subject: [PATCH] make the param names agree with the header file --- libs/util/quakeio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/util/quakeio.c b/libs/util/quakeio.c index 1f4c64db1..e0f300619 100644 --- a/libs/util/quakeio.c +++ b/libs/util/quakeio.c @@ -84,9 +84,9 @@ struct QFile_s { VISIBLE int -Qrename (const char *old, const char *new) +Qrename (const char *old_path, const char *new_path) { - return rename (old, new); + return rename (old_path, new_path); } VISIBLE int