diff options
author | Ernestas Kulik <ernestask@src.gnome.org> | 2016-08-04 20:20:34 +0300 |
---|---|---|
committer | Ernestas Kulik <ernestask@src.gnome.org> | 2016-08-05 13:01:42 +0300 |
commit | d2bf6f76a02cc9f77bfbe0a081aadfe45a86d174 (patch) | |
tree | cd038262e78b7f91d491a91153c9e5192ab117c0 /src/nautilus-shell-search-provider.c | |
parent | 2c7620a73234e8ef48ade4be1d950d4ca7b4997a (diff) | |
download | nautilus-d2bf6f76a02cc9f77bfbe0a081aadfe45a86d174.tar.gz |
shell-search-provider: fix incompatible pointer assignment
In execute_search(), there is a pointer assignment of incompatible type.
This commit fixes that by adjusting the variable type.
https://bugzilla.gnome.org/show_bug.cgi?id=769526
Diffstat (limited to 'src/nautilus-shell-search-provider.c')
-rw-r--r-- | src/nautilus-shell-search-provider.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-shell-search-provider.c b/src/nautilus-shell-search-provider.c index 12a901a7b..df5924564 100644 --- a/src/nautilus-shell-search-provider.c +++ b/src/nautilus-shell-search-provider.c @@ -394,7 +394,7 @@ execute_search (NautilusShellSearchProvider *self, { gchar *terms_joined; NautilusQuery *query; - NautilusSearchEngine *simple_provider; + NautilusSearchEngineSimple *simple_provider; PendingSearch *pending_search; GFile *home; |