diff options
| author | Juanma Barranquero | 2008-02-05 02:45:30 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-02-05 02:45:30 +0000 |
| commit | 5af1f9fe9e4c25bba6fbdfd0309e4f981486f2cc (patch) | |
| tree | a39af0dcfe0134d3654ea4756234181ac91f2476 /src | |
| parent | 4d90eee4f5482f21d9f0a628fb32a106bd4cc9f8 (diff) | |
| download | emacs-5af1f9fe9e4c25bba6fbdfd0309e4f981486f2cc.tar.gz emacs-5af1f9fe9e4c25bba6fbdfd0309e4f981486f2cc.zip | |
(read_header): Replace `legal' with `valid'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexhp9k800.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexhp9k800.c b/src/unexhp9k800.c index 495094029d6..96eb985f857 100644 --- a/src/unexhp9k800.c +++ b/src/unexhp9k800.c | |||
| @@ -228,7 +228,7 @@ read_header (file, hdr, auxhdr) | |||
| 228 | if (hdr->a_magic != EXEC_MAGIC && hdr->a_magic != SHARE_MAGIC | 228 | if (hdr->a_magic != EXEC_MAGIC && hdr->a_magic != SHARE_MAGIC |
| 229 | && hdr->a_magic != DEMAND_MAGIC) | 229 | && hdr->a_magic != DEMAND_MAGIC) |
| 230 | { | 230 | { |
| 231 | fprintf (stderr, "a.out file doesn't have legal magic number\n"); | 231 | fprintf (stderr, "a.out file doesn't have valid magic number\n"); |
| 232 | exit (1); | 232 | exit (1); |
| 233 | } | 233 | } |
| 234 | 234 | ||