Fix typo in commit 85ebd007c251b6a7e06624c94314979f5ca0b927 .

Change-Id: Id40ae4cdb98e3712b45c6e2b8a4c656cb212a59c
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
index 4e4b672..0181b4a 100644
--- a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
+++ b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
@@ -299,6 +299,7 @@
 	// must call this while holding the locks lock
 	private static void saveLocks(File locksData) throws IOException {
 		try (ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(locksData))) {
+			out.writeInt(DATA_VERSION);
 			out.writeInt(locks.size());
 			for (Iterator iterLocks = locks.iterator(); iterLocks.hasNext();)
 				out.writeUTF((String) iterLocks.next());