diff options
Diffstat (limited to 'src/libmach/obj.c')
| -rw-r--r-- | src/libmach/obj.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmach/obj.c b/src/libmach/obj.c index 2a5e047583..0e1421d859 100644 --- a/src/libmach/obj.c +++ b/src/libmach/obj.c @@ -132,16 +132,16 @@ objtype(Biobuf *bp, char **name) * Found one. Skip until "\n!\n" */ for(;;) { - if((c = Bgetc(bp)) == Beof) + if((c = BGETC(bp)) == Beof) return -1; if(c != '\n') continue; - c = Bgetc(bp); + c = BGETC(bp); if(c != '!'){ Bungetc(bp); continue; } - c = Bgetc(bp); + c = BGETC(bp); if(c != '\n'){ Bungetc(bp); continue; |
