Non-functional trivial clean up.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26972 e7fa87d3-cd2b-0410-9028-fcbf551c1848
diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp
index da6f10a..10da8e1 100644
--- a/StandAlone/StandAlone.cpp
+++ b/StandAlone/StandAlone.cpp
@@ -428,7 +428,7 @@
 glslang::TWorklist Worklist;
 
 // array of unique places to leave the shader names and infologs for the asynchronous compiles
-glslang::TWorkItem **Work = 0;
+glslang::TWorkItem** Work = 0;
 int NumWorkItems = 0;
 
 int Options = 0;
@@ -455,7 +455,7 @@
 {
     ExecutableName = argv[0];
     NumWorkItems = argc;  // will include some empties where the '-' options were, but it doesn't matter, they'll be 0
-    Work = new glslang::TWorkItem*[NumWorkItems];    
+    Work = new glslang::TWorkItem*[NumWorkItems];
     Work[0] = 0;
 
     argc--;