[pacman-dev] [PATCH v2] coding style fixes

Florian Pritz bluewind at xinu.at
Thu Aug 2 11:09:34 EDT 2012


Signed-off-by: Florian Pritz <bluewind at xinu.at>
---
This replaces "[PATCH] util.c: coding style fix"

 lib/libalpm/db.c    | 2 +-
 lib/libalpm/util.c  | 4 ++--
 src/pacman/pacman.c | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c
index bf9c3f0..953f2af 100644
--- a/lib/libalpm/db.c
+++ b/lib/libalpm/db.c
@@ -281,7 +281,7 @@ alpm_list_t SYMEXPORT *alpm_db_get_groupcache(alpm_db_t *db)
 }
 
 /** Searches a database. */
-alpm_list_t SYMEXPORT *alpm_db_search(alpm_db_t *db, const alpm_list_t* needles)
+alpm_list_t SYMEXPORT *alpm_db_search(alpm_db_t *db, const alpm_list_t *needles)
 {
 	ASSERT(db != NULL, return NULL);
 	db->handle->pm_errno = 0;
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index 0196f3b..033058a 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -65,9 +65,9 @@
  * @return pointer to the first token in str if str is not NULL, NULL if
  * str is NULL
  */
-char* strsep(char** str, const char* delims)
+char *strsep(char **str, const char *delims)
 {
-	char* token;
+	char *token;
 
 	if(*str==NULL) {
 		/* No more tokens */
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 73d5be9..478196e 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -719,7 +719,7 @@ static int parseargs(int argc, char *argv[])
  * @param argc
  * @param argv
  */
-static void cl_to_log(int argc, char* argv[])
+static void cl_to_log(int argc, char *argv[])
 {
 	size_t size = 0;
 	int i;
-- 
1.7.11.3


More information about the pacman-dev mailing list