| Index: tools/symsrc/img_fingerprint.py
|
| diff --git a/tools/symsrc/img_fingerprint.py b/tools/symsrc/img_fingerprint.py
|
| index c4b6395b87f5dc43b06543481738d6c1a0708b7a..3d6708e2a14bd6270ba8a0562a763bfc4059c09f 100755
|
| --- a/tools/symsrc/img_fingerprint.py
|
| +++ b/tools/symsrc/img_fingerprint.py
|
| @@ -17,7 +17,7 @@ import pefile
|
| def GetImgFingerprint(filename):
|
| """Returns the fingerprint for an image file"""
|
| pe = pefile.PE(filename)
|
| - return "%08X%06x" % (
|
| + return "%08X%x" % (
|
| pe.FILE_HEADER.TimeDateStamp, pe.OPTIONAL_HEADER.SizeOfImage)
|
|
|
|
|
|
|