Chromium Code Reviews| Index: pylib/gyp/mac_tool.py |
| diff --git a/pylib/gyp/mac_tool.py b/pylib/gyp/mac_tool.py |
| index 32aba14fe7600eb85da739158ea1663d351ac2e5..b430b18c94b9f4be785fd4f90acd5e609c87fb06 100755 |
| --- a/pylib/gyp/mac_tool.py |
| +++ b/pylib/gyp/mac_tool.py |
| @@ -639,7 +639,7 @@ class MacTool(object): |
| return data |
| def NextGreaterPowerOf2(x): |
| - return 2**(x-1).bit_length() |
| + return 2**(x).bit_length() |
| def WriteHmap(output_name, filelist): |
| """Generates a header map based on |filelist|. |