build broke, here's a fix

Change-Id: Ifc2399e9c971aa9eb278b0b0b5c2cf4aac82509e
diff --git a/src/com/android/camera/VideoModule.java b/src/com/android/camera/VideoModule.java
index bee5863..498129a 100644
--- a/src/com/android/camera/VideoModule.java
+++ b/src/com/android/camera/VideoModule.java
@@ -324,7 +324,7 @@
         // rid of passing in the activity directly.
         mAppController = mActivity;
 
-        mActivity.updateStorageSpaceAndHint();
+        mActivity.updateStorageSpaceAndHint(null);
 
         mUI = new VideoUI(mActivity, this,  mActivity.getModuleLayoutRoot());
         mActivity.setPreviewStatusListener(mUI);
@@ -332,8 +332,6 @@
         SettingsManager settingsManager = mActivity.getSettingsManager();
         mCameraId = Integer.parseInt(settingsManager.get(SettingsManager.SETTING_CAMERA_ID));
 
-        mActivity.updateStorageSpaceAndHint(null);
-
         /*
          * To reduce startup time, we start the preview in another thread.
          * We make sure the preview is started at the end of onCreate.