Compare function pointers against 0 rather than nil.

This commit is contained in:
wkj 2004-07-09 01:54:06 +00:00
parent eac9e0183f
commit a87638642c
13 changed files with 15 additions and 15 deletions

View file

@ -427,7 +427,7 @@ syminit(Fhdr *hdr)
int i;
Symbol *r, *w, *es;
if(hdr->syminit == nil){
if(hdr->syminit == 0){
werrstr("no debugging symbols");
return -1;
}