version: --index output to stdout instead of stderr

cute-signatures
Timo Teras 2009-09-04 11:38:19 +03:00
parent a8c3125af4
commit d3861d70a8
1 changed files with 4 additions and 4 deletions

View File

@ -31,10 +31,10 @@ static int ver_indexes(struct apk_database *db, int argc, char **argv)
if (APK_BLOB_IS_NULL(repo->description))
continue;
apk_message("%.*s [%s]",
repo->description.len,
repo->description.ptr,
db->repos[i].url);
printf("%.*s [%s]\n",
repo->description.len,
repo->description.ptr,
db->repos[i].url);
}
return 0;