minor stylistic change (NULL to '\0')

Submitted-by: Philippe Charnier <charnier@xp11.frmug.org>

Closes PR#2999
This commit is contained in:
John-Mark Gurney 1997-04-02 10:44:12 +00:00
parent 75ce49d645
commit 47a5f49956
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24543

View File

@ -374,7 +374,7 @@ putScp(os)
if (psptr < PSMAX) {
++psptr;
strncpy (pstack[psptr], pname, PNAMELEN);
pstack[psptr][PNAMELEN] = NULL;
pstack[psptr][PNAMELEN] = '\0';
plstack[psptr] = blklevel;
}
}