diff options
author | Jason Woodward | 2013-04-29 23:15:45 +0000 |
---|---|---|
committer | Jason Woodward | 2013-04-29 23:15:45 +0000 |
commit | d1a57373365da0d74fbb6c6690e3808d880c1cb6 (patch) | |
tree | 6833713ba3037b0b36d3075e2510297781bf4240 | |
parent | 37fa867d7d00a0782bbeadc58671b6b1c34b9f68 (diff) | |
download | slapt-get-d1a57373365da0d74fbb6c6690e3808d880c1cb6.tar.gz |
Add newline to the end of filelist output
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/action.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ 0.10.2p Apr 29, 2013 + * Add newline to the end of filelist output * do not require root privs for filelist option (thanks David Unric) * Added he and pt translations from transifex * updated es_ES translation from Angelos diff --git a/src/action.c b/src/action.c index fedc2aa..12288e7 100644 --- a/src/action.c +++ b/src/action.c @@ -864,7 +864,7 @@ void slapt_pkg_action_filelist( const char *pkg_name ) filelist = slapt_get_pkg_filelist(pkg); - printf("%s",filelist); + printf("%s\n",filelist); free(filelist); slapt_free_regex(pkg_regex); |