format fix
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 27 Feb 2006 14:57:48 +0000 (14:57 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 27 Feb 2006 14:57:48 +0000 (14:57 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@646 9efc2488-bf62-4759-914b-345cdb29e865

src/libstack/osrf_application.c

index f75451a..685c7ab 100644 (file)
@@ -32,7 +32,8 @@ int osrfAppRegisterApplication( char* appName, char* soFile ) {
        *(void **) (&init) = dlsym(app->handle, "osrfAppInitialize");
 
        if( (error = dlerror()) != NULL ) {
-               osrfLogWarning( OSRF_LOG_MARK, "! Unable to locate method symbol [osrfAppInitialize] for app %s: %s", appName, error );
+               osrfLogWarning( OSRF_LOG_MARK, 
+                       "! Unable to locate method symbol [osrfAppInitialize] for app %s: %s", appName, error );
 
        } else {