[pacman-dev] [PATCH] alpm.h: fix inconsistency in function prototype

Dave Reisner d at falconindy.com
Sat Aug 13 16:07:06 EDT 2011


Signed-off-by: Dave Reisner <dreisner at archlinux.org>
---
 lib/libalpm/alpm.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index 32db687..6ed82e4 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -945,13 +945,13 @@ alpm_transflag_t alpm_trans_get_flags(alpm_handle_t *handle);
  * @param handle the context handle
  * @return a list of alpm_pkg_t structures
  */
-alpm_list_t * alpm_trans_get_add(alpm_handle_t *handle);
+alpm_list_t *alpm_trans_get_add(alpm_handle_t *handle);
 
 /** Returns the list of packages removed by the transaction.
  * @param handle the context handle
  * @return a list of alpm_pkg_t structures
  */
-alpm_list_t * alpm_trans_get_remove(alpm_handle_t *handle);
+alpm_list_t *alpm_trans_get_remove(alpm_handle_t *handle);
 
 /** Initialize the transaction.
  * @param handle the context handle
-- 
1.7.6



More information about the pacman-dev mailing list