Skip to content

Commit

Permalink
Fix log message typo while guessing start offset
Browse files Browse the repository at this point in the history
  • Loading branch information
keelung-yang authored Feb 20, 2019
1 parent 127c30e commit 40aac00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ubireader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def guess_start_offset(path, guess_offset=0):
return file_offset + ubi_loc

elif ubifs_loc < ubi_loc:
log(guess_start_offset, 'Found UBI magic number at %s' % (file_offset + ubifs_loc))
log(guess_start_offset, 'Found UBIFS magic number at %s' % (file_offset + ubifs_loc))
return file_offset + ubifs_loc
else:
error(guess_start_offset, 'Fatal', 'Could not determine start offset.')
Expand Down

0 comments on commit 40aac00

Please sign in to comment.