summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2013-01-03 22:48:51 +0100
committerAllan McRae <allan@archlinux.org>2013-01-04 12:49:37 +0100
commite13a3bf5990d03cca25c86efbfbaf2540d645413 (patch)
tree74ca915c593e8f275c9a46c957fcaf16bfab8cee /lib/libalpm/util.c
parent46e9afdd74b39be78e6d66696d1e53914894e9b7 (diff)
downloadpacman-e13a3bf5990d03cca25c86efbfbaf2540d645413.tar.gz
pacman-e13a3bf5990d03cca25c86efbfbaf2540d645413.tar.xz
Fix missing spaces in operators
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index f6e66321..9effd181 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -69,22 +69,22 @@ char *strsep(char **str, const char *delims)
{
char *token;
- if(*str==NULL) {
+ if(*str == NULL) {
/* No more tokens */
return NULL;
}
- token=*str;
- while(**str!='\0') {
- if(strchr(delims,**str)!=NULL) {
- **str='\0';
+ token = *str;
+ while(**str != '\0') {
+ if(strchr(delims, **str) != NULL) {
+ **str = '\0';
(*str)++;
return token;
}
(*str)++;
}
/* There is no other token */
- *str=NULL;
+ *str = NULL;
return token;
}
#endif
@@ -350,7 +350,7 @@ int _alpm_unpack(alpm_handle_t *handle, const char *path, const char *prefix,
char *entry_prefix = strdup(entryname);
char *p = strstr(entry_prefix,"/");
if(p) {
- *(p+1) = '\0';
+ *(p + 1) = '\0';
}
char *found = alpm_list_find_str(list, entry_prefix);
free(entry_prefix);
@@ -475,7 +475,7 @@ int _alpm_logaction(alpm_handle_t *handle, const char *fmt, va_list args)
/* Use ISO-8601 date format */
fprintf(handle->logstream, "[%04d-%02d-%02d %02d:%02d] ",
- tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
+ tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min);
ret = vfprintf(handle->logstream, fmt, args);
fflush(handle->logstream);