diff --git a/src/console/c_cmds.cpp b/src/console/c_cmds.cpp index 8d030eced..711bcf3b8 100644 --- a/src/console/c_cmds.cpp +++ b/src/console/c_cmds.cpp @@ -643,8 +643,7 @@ CCMD (error) { if (argv.argc() > 1) { - char *textcopy = copystring (argv[1]); - I_Error ("%s", textcopy); + I_Error ("%s", argv[1]); } else { @@ -656,8 +655,7 @@ UNSAFE_CCMD (error_fatal) { if (argv.argc() > 1) { - char *textcopy = copystring (argv[1]); - I_FatalError ("%s", textcopy); + I_FatalError ("%s", argv[1]); } else {