X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=binutils%2Fcoffgrok.c;h=1556a0b8ad25764c532bc8c5625dc3eb8355fd87;hb=6ae978f133a67d34d01b6bb2053f1ba20ad13eeb;hp=62cd1c49823f9d3df82f3c856de160b380a8014e;hpb=2571583aed598dd3f9651b53434e5f177a0e3cf7;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index 62cd1c4982..1556a0b8ad 100644 --- a/binutils/coffgrok.c +++ b/binutils/coffgrok.c @@ -1,5 +1,5 @@ /* coffgrok.c - Copyright (C) 1994-2017 Free Software Foundation, Inc. + Copyright (C) 1994-2019 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -846,13 +846,13 @@ doit (void) case C_UNTAG: /* Various definition. */ if (top_scope == NULL) - fatal (_("Aggregate defintion encountered without a scope")); + fatal (_("Aggregate definition encountered without a scope")); i = do_define (i, top_scope); break; case C_EXT: case C_LABEL: if (file_scope == NULL) - fatal (_("Label defintion encountered without a file scope")); + fatal (_("Label definition encountered without a file scope")); i = do_define (i, file_scope); break; case C_STAT: @@ -860,7 +860,7 @@ doit (void) case C_AUTO: case C_REG: if (top_scope == NULL) - fatal (_("Variable defintion encountered without a scope")); + fatal (_("Variable definition encountered without a scope")); i = do_define (i, top_scope); break; case C_EOS: