summaryrefslogtreecommitdiffstats
path: root/libc/tools
diff options
context:
space:
mode:
Diffstat (limited to 'libc/tools')
-rw-r--r--libc/tools/zoneinfo/ZoneCompactor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/tools/zoneinfo/ZoneCompactor.java b/libc/tools/zoneinfo/ZoneCompactor.java
index 8a1a628..f47afd1 100644
--- a/libc/tools/zoneinfo/ZoneCompactor.java
+++ b/libc/tools/zoneinfo/ZoneCompactor.java
@@ -198,6 +198,8 @@ public class ZoneCompactor {
// Write the data.
f.write(allData.toByteArray());
+ int zonetab_offset = (int) f.getFilePointer();
+
// Copy the zone.tab.
reader = new BufferedReader(new FileReader(zoneTabFile));
while ((s = reader.readLine()) != null) {
@@ -208,8 +210,6 @@ public class ZoneCompactor {
}
reader.close();
- int zonetab_offset = (int) f.getFilePointer();
-
// Go back and fix up the offsets in the header.
f.seek(index_offset_offset);
f.writeInt(index_offset);