mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Fixed some missing commas that resulted in garbled cbuf error messages.
This commit is contained in:
parent
8b31103e6f
commit
70c1fee4c9
1 changed files with 3 additions and 3 deletions
|
@ -556,7 +556,7 @@ GIB_File_Read_f (void)
|
|||
}
|
||||
path = cbuf_active->args->argv[1]->str;
|
||||
if (!GIB_CollapsePath (path)) {
|
||||
Cbuf_Error ("access"
|
||||
Cbuf_Error ("access",
|
||||
"file.read: access to %s denied", path);
|
||||
return;
|
||||
}
|
||||
|
@ -585,7 +585,7 @@ GIB_File_Write_f (void)
|
|||
}
|
||||
path = cbuf_active->args->argv[1]->str;
|
||||
if (!GIB_CollapsePath (path)) {
|
||||
Cbuf_Error ("access"
|
||||
Cbuf_Error ("access",
|
||||
"file.write: access to %s denied", path);
|
||||
return;
|
||||
}
|
||||
|
@ -617,7 +617,7 @@ GIB_File_Find_f (void)
|
|||
if (GIB_Argc () == 3) {
|
||||
path = cbuf_active->args->argv[2]->str;
|
||||
if (!GIB_CollapsePath (path)) {
|
||||
Cbuf_Error ("access"
|
||||
Cbuf_Error ("access",
|
||||
"file.find: access to %s denied", path);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue