Fix compilation errors in translator.cpp.
Review URL: http://codereview.appspot.com/4445073

git-svn-id: https://angleproject.googlecode.com/svn/trunk@626 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/samples/translator/translator.cpp b/samples/translator/translator.cpp
index e303323..7e0dff6 100644
--- a/samples/translator/translator.cpp
+++ b/samples/translator/translator.cpp
@@ -231,10 +231,10 @@
     for (int i = 0; i < activeVars; ++i) {
         switch (varType) {
             case SH_ACTIVE_ATTRIBUTES:
-                ShGetActiveAttrib(compiler, i, NULL, &size, &type, name);
+                ShGetActiveAttrib(compiler, i, NULL, &size, &type, name, NULL);
                 break;
             case SH_ACTIVE_UNIFORMS:
-                ShGetActiveUniform(compiler, i, NULL, &size, &type, name);
+                ShGetActiveUniform(compiler, i, NULL, &size, &type, name, NULL);
                 break;
             default: assert(0);
         }
diff --git a/src/common/version.h b/src/common/version.h
index c3014d7..5bc17b5 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -1,7 +1,7 @@
 #define MAJOR_VERSION 0
 #define MINOR_VERSION 0
 #define BUILD_VERSION 0
-#define BUILD_REVISION 625
+#define BUILD_REVISION 626
 
 #define STRINGIFY(x) #x
 #define MACRO_STRINGIFY(x) STRINGIFY(x)