diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-17 15:13:33 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-06-17 16:58:57 +0100 |
commit | 8ba3116a8f09650b47aa69cf3d828ca0b5f6b51e (patch) | |
tree | 3dc21143fe4ef2b23d550d53c813f5ea62a9e396 /libreofficekit/source | |
parent | 5df0bfdddb65742e437d7bfe2df2979f445aea8f (diff) |
LOK: Split into instance and class.
Change-Id: I2b6f33eaf12343c7da1328a932eb703bb4e4ef6f
Diffstat (limited to 'libreofficekit/source')
-rw-r--r-- | libreofficekit/source/shim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libreofficekit/source/shim.c b/libreofficekit/source/shim.c index 325695f00313..78002ab81753 100644 --- a/libreofficekit/source/shim.c +++ b/libreofficekit/source/shim.c @@ -50,7 +50,7 @@ SAL_DLLPUBLIC_EXPORT LibreOfficeKit *lok_init( const char *install_path ) return NULL; } - pSym = (HookFunction *) dlsym( dlhandle, "liblibreoffice_hook" ); + pSym = (HookFunction *) dlsym( dlhandle, "libreofficekit_hook" ); if( !pSym ) { fprintf( stderr, "failed to find hook in library '%s'\n", imp_lib ); dlclose( dlhandle ); |