Preliminary implementation of the JNI invocation interface.

Change-Id: Ib144cb887864cd232a8cb8167b20d1540829a6a5
diff --git a/src/runtime_linux.cc b/src/runtime_linux.cc
index e150d8e..4aa90f0 100644
--- a/src/runtime_linux.cc
+++ b/src/runtime_linux.cc
@@ -22,7 +22,7 @@
   // Turn them into something human-readable with symbols.
   // TODO: in practice, we may find that we should use backtrace_symbols_fd
   // to avoid allocation, rather than use our own custom formatting.
-  art::scoped_ptr_malloc<char*> symbols(backtrace_symbols(frames, frame_count));
+  scoped_ptr_malloc<char*> symbols(backtrace_symbols(frames, frame_count));
   if (symbols == NULL) {
     PLOG(ERROR) << "backtrace_symbols failed";
     return;