minor whitespace-only style fix
authorDima Kogan <dima@secretsauce.net>
Sat, 26 Jul 2014 04:20:06 +0000 (21:20 -0700)
committerChanho Park <chanho61.park@samsung.com>
Fri, 22 Aug 2014 11:38:27 +0000 (20:38 +0900)
library.c
library.h

index 7fb14c1..2339153 100644 (file)
--- a/library.c
+++ b/library.c
@@ -493,8 +493,8 @@ const char** library_exported_names_each_alias(
                         library_exported_names_each_alias_cb, &context);
 }
 
-int library_exported_names_contains(struct library_exported_namesnames,
-                                   const charqueryname)
+int library_exported_names_contains(struct library_exported_names *names,
+                                   const char *queryname)
 {
        uint64_t *addr = DICT_FIND_REF(&names->names,
                                       &queryname, uint64_t);
index 4506621..03d6dc1 100644 (file)
--- a/library.h
+++ b/library.h
@@ -288,7 +288,7 @@ const char** library_exported_names_each_alias(
 
 /* Returns 0 if the exported names list does not contain a given name, or 1 if
  * it does */
-int library_exported_names_contains(struct library_exported_namesnames,
-                                   const charqueryname);
+int library_exported_names_contains(struct library_exported_names *names,
+                                   const char *queryname);
 
 #endif /* LIBRARY_H */