diff --git a/ChangeLog b/ChangeLog
index ffdd06f871fc1e23ea41f40dfea1f974cfbb4f4f..d8e010c62081834abcedc0bd4f91980d2f379755 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,7 +28,7 @@ General
 	- Added space and - keys to do page up and down.
   cwd_tab_completion(), input_tab()
 	- Changed bare malloc/calloc calls to nmalloc (found by Rocco).
-	- Added null end of tmpBuf for sanity (Rocco).
+	- Added zero end of tmpBuf for sanity (Rocco).
 - nano.c:
   ABCD()
 	- New function, figures out what kbinput to return given
diff --git a/files.c b/files.c
index 8248f498c134cb69feac7cea9dec66e77c9e1f7e..6b5a9d2b463911cab68c13360c8bea27e1f69b87 100644
--- a/files.c
+++ b/files.c
@@ -885,7 +885,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
 	matchBuf = (char *) nmalloc((strlen(buf) + 2) * sizeof(char));
 
 	strncpy(matchBuf, buf, place);
-	matchBuf[place] = (char) NULL;
+	matchBuf[place] = 0;
 	tmp = matchBuf;
 
 	/* skip any leading white space */