make the param names agree with the header file

This commit is contained in:
Bill Currie 2007-03-18 02:27:33 +00:00 committed by Jeff Teunissen
parent ab310cb443
commit e74a8a7c62

View file

@ -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