Fix a harmless error found by GCC 4.6.

debugger.cc:595:20: error: converting to non-pointer type 'art::JDWP::RefTypeId {aka long long unsigned int}' from NULL [-Werror=conversion-null]

Change-Id: Id2c6d7d85d2a46dce0ce115520d720d8bec43077
diff --git a/src/debugger.cc b/src/debugger.cc
index 1ba0c73..2156482 100644
--- a/src/debugger.cc
+++ b/src/debugger.cc
@@ -592,7 +592,7 @@
   }
   if (c->IsInterface()) {
     // http://code.google.com/p/android/issues/detail?id=20856
-    superclassId = NULL;
+    superclassId = 0;
   } else {
     superclassId = gRegistry->Add(c->GetSuperClass());
   }