diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-11-18 15:47:32 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-11-18 15:47:32 +0100 |
| commit | d924772eeced2429c007e51ce6dcb50dadec2836 (patch) | |
| tree | a891017ca913b3c9226dae0946530a157c2dbace /lib/base | |
| parent | 63bae75ab8aaaee8bca8175918d376bb729bf65d (diff) | |
| download | enigma2-d924772eeced2429c007e51ce6dcb50dadec2836.tar.gz enigma2-d924772eeced2429c007e51ce6dcb50dadec2836.zip | |
don't try to look for python files when handling a C++ crash
Diffstat (limited to 'lib/base')
| -rw-r--r-- | lib/base/eerror.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base/eerror.cpp b/lib/base/eerror.cpp index 7ebac213..4c4d6551 100644 --- a/lib/base/eerror.cpp +++ b/lib/base/eerror.cpp @@ -77,7 +77,7 @@ int logOutputConsole=1; static pthread_mutex_t DebugLock = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP; -extern void bsodFatal(); +extern void bsodFatal(const char *component); void eFatal(const char* fmt, ...) { @@ -91,7 +91,7 @@ void eFatal(const char* fmt, ...) logOutput(lvlFatal, "FATAL: " + std::string(buf) + "\n"); fprintf(stderr, "FATAL: %s\n",buf ); } - bsodFatal(); + bsodFatal("enigma2"); } #ifdef DEBUG |
