Skip to content

Commit

Permalink
Merge pull request #27 from keelung-yang/master
Browse files Browse the repository at this point in the history
Fix log message typo while guessing start offset
  • Loading branch information
jrspruitt committed Feb 21, 2019
2 parents 127c30e + 40aac00 commit 0a57bed
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 0a57bed

Please sign in to comment.