diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-08-11 02:21:01 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-08-11 02:21:01 +0800 |
commit | 7dc99c559402d6f3a638a8b856e47f105fdbe664 (patch) | |
tree | c63a7371f324920f9f9b3d3cc3b61dee2d32a2cb /plugins/desktop-file | |
parent | 431ef3d613f9e020d0add3f33cbd1d41d575bf92 (diff) | |
download | gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar.gz gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar.bz2 gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar.lz gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar.xz gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.tar.zst gsoc2013-epiphany-7dc99c559402d6f3a638a8b856e47f105fdbe664.zip |
Fix crash on PPC due to differing pointer types.
2006-08-10 Christian Persch <chpe@cvs.gnome.org>
* plugins/desktop-file/plugin.cpp:
Fix crash on PPC due to differing pointer types.
Diffstat (limited to 'plugins/desktop-file')
-rw-r--r-- | plugins/desktop-file/plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/desktop-file/plugin.cpp b/plugins/desktop-file/plugin.cpp index 29f4868bb..4f578239b 100644 --- a/plugins/desktop-file/plugin.cpp +++ b/plugins/desktop-file/plugin.cpp @@ -447,7 +447,7 @@ plugin_get_value (NPP instance, break; case NPPVpluginNeedsXEmbed: - *((PRBool *) value) = PR_FALSE; + *((NPBool *) value) = PR_FALSE; break; default: |