Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a4657f7

Browse files
committed
Marc-Andre Lemburg <[email protected]>:
Fixed a quote bug. Thanks to Fredrik Lundh.
1 parent f28dd83 commit a4657f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/perfecthash/GenUCNHash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def generateOutputFiles(perfHash, hashData):
5050
out = open(headerFileName, "w")
5151
out.write(header)
5252
out = open(cFileName, "w")
53-
out.write("#include "%s"\n" % headerFileName)
53+
out.write("#include \"%s\"\n" % headerFileName)
5454
out.write(code)
5555
perfHash.generate_graph(out)
5656
out.write("""

0 commit comments

Comments
 (0)