From 91594a1ef895a6e47ece299b762d5476f1bca348 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 25 Mar 2011 11:57:20 -0400 Subject: style cleanup: cast as (type *) not (type*) Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- lib/libalpm/package.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/package.c') diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c index 9e1dbd52..035ff170 100644 --- a/lib/libalpm/package.c +++ b/lib/libalpm/package.c @@ -203,7 +203,7 @@ const char SYMEXPORT *alpm_pkg_get_md5sum(pmpkg_t *pkg) static int decode_pgpsig(pmpkg_t *pkg) { int len = strlen(pkg->pgpsig.encdata); - const unsigned char *usline = (const unsigned char*)pkg->pgpsig.encdata; + const unsigned char *usline = (const unsigned char *)pkg->pgpsig.encdata; int destlen = 0; /* get the necessary size for the buffer by passing 0 */ int ret = base64_decode(NULL, &destlen, usline, len); -- cgit v1.2.3-24-g4f1b