summaryrefslogtreecommitdiffstats
path: root/tools/symsrc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/symsrc')
-rwxr-xr-xtools/symsrc/img_fingerprint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/symsrc/img_fingerprint.py b/tools/symsrc/img_fingerprint.py
index c4b6395..3d6708e2 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)