summaryrefslogtreecommitdiff
path: root/navit/search.c
diff options
context:
space:
mode:
authorwoglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-08-15 17:37:58 +0000
committerwoglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-08-15 17:37:58 +0000
commit1cf6b95c8bdc7eb37fe0599e76dce8a9574933bd (patch)
tree6cbe1585e269cd068459111a62cfa025b36928f2 /navit/search.c
parentd473f542d7d4f8d1f79e5d654c72b0052549ab3c (diff)
downloadnavit-1cf6b95c8bdc7eb37fe0599e76dce8a9574933bd.tar.gz
Refactor:core:remove trailing whitespaces
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5872 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/search.c')
-rw-r--r--navit/search.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/navit/search.c b/navit/search.c
index 30eeb0e5b..5f327959c 100644
--- a/navit/search.c
+++ b/navit/search.c
@@ -195,7 +195,7 @@ search_split_phrases(char *str)
struct phrase *phrase=g_new(struct phrase, 1);
phrase->start=s;
phrase->end=d;
- phrase->wordcount=++wordcount;
+ phrase->wordcount=++wordcount;
ret=g_list_append(ret, phrase);
}
} while (*d != '\0');
@@ -306,7 +306,7 @@ search_by_address(struct search_list *this_, char *addr)
while (tmp) {
g_free(tmp->data);
tmp=g_list_next(tmp);
- }
+ }
g_list_free(phrases);
// TODO: Looks like we should g_free(str) here. But this is
// currently dead code, so no way to test it.
@@ -353,7 +353,7 @@ search_list_search(struct search_list *this_, struct attr *search_attr, int part
if (search_attr->type == attr_address) {
search_by_address(this_, search_attr->u.str);
this_->use_address_results=1;
- return;
+ return;
}
this_->use_address_results=0;
level=search_list_level(search_attr->type);
@@ -442,13 +442,13 @@ search_list_common_new(struct item *item, struct search_list_common *common)
struct attr attr;
int i;
enum attr_type common_attrs[]={
- attr_state_name,
- attr_county_name,
- attr_municipality_name,
- attr_town_name,
- attr_district_name,
- attr_postal,
- attr_town_postal,
+ attr_state_name,
+ attr_county_name,
+ attr_municipality_name,
+ attr_town_name,
+ attr_district_name,
+ attr_postal,
+ attr_town_postal,
attr_postal_mask,
attr_none
};
@@ -709,7 +709,7 @@ search_list_result_dup(struct search_list_result *slr)
ret->c=g_new(struct pcoord, 1);
*ret->c=*slr->c;
}
- if (slr->country)
+ if (slr->country)
ret->country=search_list_country_dup(slr->country);
if (slr->town)
ret->town=search_list_town_dup(slr->town);
@@ -717,7 +717,7 @@ search_list_result_dup(struct search_list_result *slr)
ret->street=search_list_street_dup(slr->street);
if (slr->house_number)
ret->house_number=search_list_house_number_dup(slr->house_number);
- return ret;
+ return ret;
}
static void