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
This commit is contained in:
Ernestas Kulik 2016-08-04 20:20:34 +03:00
parent 2c7620a732
commit d2bf6f76a0

View file

@ -394,7 +394,7 @@ execute_search (NautilusShellSearchProvider *self,
{
gchar *terms_joined;
NautilusQuery *query;
NautilusSearchEngine *simple_provider;
NautilusSearchEngineSimple *simple_provider;
PendingSearch *pending_search;
GFile *home;