From: Lucas De Marchi Date: Fri, 2 Dec 2011 19:48:14 +0000 (-0200) Subject: index: use idx instead of index due to name clash X-Git-Tag: v1~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a4876d6a7947075535be3e50323db6542c8d526;p=thirdparty%2Fkmod.git index: use idx instead of index due to name clash --- diff --git a/libkmod/libkmod-index.h b/libkmod/libkmod-index.h index dc54e176..653ce421 100644 --- a/libkmod/libkmod-index.h +++ b/libkmod/libkmod-index.h @@ -156,9 +156,9 @@ enum node_offset { struct index_file; struct index_file *index_file_open(const char *filename); -void index_file_close(struct index_file *index); -char *index_search(struct index_file *index, const char *key); -struct index_value *index_searchwild(struct index_file *index, const char *key); +void index_file_close(struct index_file *idx); +char *index_search(struct index_file *idx, const char *key); +struct index_value *index_searchwild(struct index_file *idx, const char *key); void index_values_free(struct index_value *values);