Browse Source

Fix warning introduced by previous commit

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 years ago
parent
commit
304a2d0535
1 changed files with 3 additions and 1 deletions
  1. 3 1
      roxie/ccd/ccdserver.cpp

+ 3 - 1
roxie/ccd/ccdserver.cpp

@@ -20898,7 +20898,9 @@ public:
           isLocal(_isLocal),
           remoteId(_remoteId)
     {
-        rowLimit = keyedLimit = chooseNLimit = 0;
+        rowLimit = 0;
+        keyedLimit = 0;
+        chooseNLimit = 0;
         indexHelper.setCallback(&callback);
         steppedExtra = static_cast<IHThorSteppedSourceExtra *>(indexHelper.selectInterface(TAIsteppedsourceextra_1));
         limitTransformExtra = static_cast<IHThorSourceLimitTransformExtra *>(indexHelper.selectInterface(TAIsourcelimittransformextra_1));