summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@src.gnome.org>2016-08-04 20:20:34 +0300
committerErnestas Kulik <ernestask@src.gnome.org>2016-08-05 13:01:42 +0300
commitd2bf6f76a02cc9f77bfbe0a081aadfe45a86d174 (patch)
treecd038262e78b7f91d491a91153c9e5192ab117c0
parent2c7620a73234e8ef48ade4be1d950d4ca7b4997a (diff)
downloadnautilus-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
-rw-r--r--src/nautilus-shell-search-provider.c2
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;