diff options
| author | Simon Tatham <anakin@pobox.com> | 2002-08-05 10:31:35 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2002-08-05 10:31:35 +0000 |
| commit | c478f3d9469c09773097eba89342c311ee70a319 (patch) | |
| tree | f7b1e1d1ac577b5571bf14fe70af1dced325dccc /error.c | |
| parent | 6758ed90d7c0015752894202138ecbcef35b80a0 (diff) | |
| download | halibut-c478f3d9469c09773097eba89342c311ee70a319.zip halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.gz halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.bz2 halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.xz | |
Rename Buttress to Halibut. I _think_ I've caught everything in this pass.
[originally from svn r1800]
Diffstat (limited to 'error.c')
| -rw-r--r-- | error.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,16 +1,16 @@ /* - * error.c: buttress error handling + * error.c: Halibut error handling */ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> -#include "buttress.h" +#include "halibut.h" /* * Error flags */ -#define PREFIX 0x0001 /* give `buttress:' prefix */ +#define PREFIX 0x0001 /* give `halibut:' prefix */ #define FILEPOS 0x0002 /* give file position prefix */ static void do_error(int code, va_list ap) { @@ -192,7 +192,7 @@ static void do_error(int code, va_list ap) { } if (flags & PREFIX) - fputs("buttress: ", stderr); + fputs("halibut: ", stderr); if (flags & FILEPOS) { fprintf(stderr, "%s:%d:", fpos.filename, fpos.line); if (fpos.col > 0) |