diff options
author | emaste <emaste@FreeBSD.org> | 2016-09-15 17:25:11 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-09-15 17:25:11 +0000 |
commit | 2795fdfa265e1b30d06c9de100f163a9fba3e675 (patch) | |
tree | 65f8e5d41f9af9c9e2310eff823dff59b9edae9c /contrib | |
parent | fa33625a69e572e10bc278b9c2f9415d60cb6d95 (diff) | |
download | FreeBSD-src-2795fdfa265e1b30d06c9de100f163a9fba3e675.zip FreeBSD-src-2795fdfa265e1b30d06c9de100f163a9fba3e675.tar.gz |
MFC r304191: elfcopy: correct comment typo
(Missed in r305838)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/elftoolchain/elfcopy/ascii.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/elftoolchain/elfcopy/ascii.c b/contrib/elftoolchain/elfcopy/ascii.c index 747c66b..6adecf8 100644 --- a/contrib/elftoolchain/elfcopy/ascii.c +++ b/contrib/elftoolchain/elfcopy/ascii.c @@ -251,7 +251,7 @@ create_elf_from_srec(struct elfcopy *ecp, int ifd) sec_index = 1; sec_addr = entry = 0; while (fgets(line, _LINE_BUFSZ, ifp) != NULL) { - sz = 0; /* Silence GCC 5.3 unintialized variable warning */ + sz = 0; /* Silence GCC 5.3 uninitialized variable warning */ if (line[0] == '\r' || line[0] == '\n') continue; if (line[0] == '$' && line[1] == '$') { |