Replace unnecessary dynamic_cast with static_cast.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117503 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/BreakpointLocation.cpp b/source/Breakpoint/BreakpointLocation.cpp
index 609a41e..525efd3 100644
--- a/source/Breakpoint/BreakpointLocation.cpp
+++ b/source/Breakpoint/BreakpointLocation.cpp
@@ -352,7 +352,7 @@
             {
                 s->EOL();
                 s->Indent("compile unit = ");
-                dynamic_cast<FileSpec*>(sc.comp_unit)->GetFilename().Dump (s);
+                static_cast<FileSpec*>(sc.comp_unit)->GetFilename().Dump (s);
 
                 if (sc.function != NULL)
                 {