Fix a bug in passing parameters to prepare_user_storage.

Add the serial parameter to prepare_user_storage to avoid
confusion when parsing parameters and passing them around.

Change-Id: Id5516c248401ad50585aa8f6e8b1545a6cded549
diff --git a/Ext4Crypt.h b/Ext4Crypt.h
index a3d9224..eb33876 100644
--- a/Ext4Crypt.h
+++ b/Ext4Crypt.h
@@ -44,6 +44,9 @@
 int e4crypt_unlock_user_key(userid_t user_id, const char* token);
 int e4crypt_lock_user_key(userid_t user_id);
 
-int e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, bool ephemeral);
+int e4crypt_prepare_user_storage(const char* volume_uuid,
+                                 userid_t user_id,
+                                 int serial,
+                                 bool ephemeral);
 
 __END_DECLS