diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm
index 03dbd25a7a6..f4bba06a0d2 100644
--- a/code/modules/admin/verbs/debug.dm
+++ b/code/modules/admin/verbs/debug.dm
@@ -72,7 +72,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
usr << "Error: callproc(): target has no such call [procname]."
return
else
- procpath = text2path(procname)
+ var/procpath = text2path(procname)
if (!procpath)
usr << "Error: callproc(): proc [procname] does not exist. (Did you forget the /proc/ part?)"
return