Fix regression of test SourceManagerTestCase.test_display_source_python.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@141021 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBSourceManager.cpp b/source/API/SBSourceManager.cpp
index 64b8e54..76f58b7 100644
--- a/source/API/SBSourceManager.cpp
+++ b/source/API/SBSourceManager.cpp
@@ -51,7 +51,7 @@
                                            const char* current_line_cstr,
                                            lldb_private::Stream *s)
         {
-            if (file)
+            if (!file)
                 return 0;
             
             if (m_debugger_sp)