diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-01-15 13:33:48 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-01-15 13:33:48 -0500 |
commit | 296ce2278bae60d844f6c5b96c4889f620b6b4bf (patch) | |
tree | 9a14fe078b45feb7668a37ad57e7ab8f374dd886 | |
parent | 9a79b91e0747b39316bf6f1c096c5e70b5ea8107 (diff) | |
download | seabios-296ce2278bae60d844f6c5b96c4889f620b6b4bf.tar.gz |
Minor - fix misspelling in romfile.c comment.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | src/romfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/romfile.c b/src/romfile.c index 33b62234..42261a62 100644 --- a/src/romfile.c +++ b/src/romfile.c @@ -79,7 +79,7 @@ romfile_loadfile(const char *name, int *psize) } // Attempt to load an integer from the given file - return 'defval' -// if unsuccesful. +// if unsuccessful. u64 romfile_loadint(const char *name, u64 defval) { |