summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-08-02 07:58:11 +0200
committerGitHub <noreply@github.com>2019-08-02 07:58:11 +0200
commit24c491ed00a53f59249e1744a5c6cde1d3f473d4 (patch)
treeb335086e2575926d12885eed456173e3cf570797 /examples
parentd588de7cd624031bb0a641c12fdfdfc8cf9164ff (diff)
parent73a186f28afdfc800db630df3fe895ba1acdc451 (diff)
downloadlibgit2-24c491ed00a53f59249e1744a5c6cde1d3f473d4.tar.gz
Merge pull request #5146 from scottfurry/StaticFixesExamples
Adjust printf specifiers in examples code
Diffstat (limited to 'examples')
-rw-r--r--examples/clone.c4
-rw-r--r--examples/fetch.c8
-rw-r--r--examples/index-pack.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/examples/clone.c b/examples/clone.c
index 26ad12bba..22d9d9b61 100644
--- a/examples/clone.c
+++ b/examples/clone.c
@@ -23,11 +23,11 @@ static void print_progress(const progress_data *pd)
if (pd->fetch_progress.total_objects &&
pd->fetch_progress.received_objects == pd->fetch_progress.total_objects) {
- printf("Resolving deltas %d/%d\r",
+ printf("Resolving deltas %u/%u\r",
pd->fetch_progress.indexed_deltas,
pd->fetch_progress.total_deltas);
} else {
- printf("net %3d%% (%4"PRIuZ" kb, %5d/%5d) / idx %3d%% (%5d/%5d) / chk %3d%% (%4" PRIuZ "/%4" PRIuZ ") %s\n",
+ printf("net %3d%% (%4" PRIuZ " kb, %5u/%5u) / idx %3d%% (%5u/%5u) / chk %3d%% (%4" PRIuZ "/%4" PRIuZ")%s\n",
network_percent, kbytes,
pd->fetch_progress.received_objects, pd->fetch_progress.total_objects,
index_percent, pd->fetch_progress.indexed_objects, pd->fetch_progress.total_objects,
diff --git a/examples/fetch.c b/examples/fetch.c
index 3b1fad11a..2b5ed1112 100644
--- a/examples/fetch.c
+++ b/examples/fetch.c
@@ -43,10 +43,10 @@ static int transfer_progress_cb(const git_indexer_progress *stats, void *payload
(void)payload;
if (stats->received_objects == stats->total_objects) {
- printf("Resolving deltas %d/%d\r",
+ printf("Resolving deltas %u/%u\r",
stats->indexed_deltas, stats->total_deltas);
} else if (stats->total_objects > 0) {
- printf("Received %d/%d objects (%d) in %" PRIuZ " bytes\r",
+ printf("Received %u/%u objects (%u) in %" PRIuZ " bytes\r",
stats->received_objects, stats->total_objects,
stats->indexed_objects, stats->received_bytes);
}
@@ -92,10 +92,10 @@ int lg2_fetch(git_repository *repo, int argc, char **argv)
*/
stats = git_remote_stats(remote);
if (stats->local_objects > 0) {
- printf("\rReceived %d/%d objects in %" PRIuZ " bytes (used %d local objects)\n",
+ printf("\rReceived %u/%u objects in %" PRIuZ " bytes (used %u local objects)\n",
stats->indexed_objects, stats->total_objects, stats->received_bytes, stats->local_objects);
} else{
- printf("\rReceived %d/%d objects in %" PRIuZ "bytes\n",
+ printf("\rReceived %u/%u objects in %" PRIuZ "bytes\n",
stats->indexed_objects, stats->total_objects, stats->received_bytes);
}
diff --git a/examples/index-pack.c b/examples/index-pack.c
index 2181f43f3..c58ac038a 100644
--- a/examples/index-pack.c
+++ b/examples/index-pack.c
@@ -7,7 +7,7 @@
static int index_cb(const git_indexer_progress *stats, void *data)
{
(void)data;
- printf("\rProcessing %d of %d", stats->indexed_objects, stats->total_objects);
+ printf("\rProcessing %u of %u", stats->indexed_objects, stats->total_objects);
return 0;
}
@@ -59,7 +59,7 @@ int lg2_index_pack(git_repository *repo, int argc, char **argv)
if ((error = git_indexer_commit(idx, &stats)) < 0)
goto cleanup;
- printf("\rIndexing %d of %d\n", stats.indexed_objects, stats.total_objects);
+ printf("\rIndexing %u of %u\n", stats.indexed_objects, stats.total_objects);
git_oid_fmt(hash, git_indexer_hash(idx));
puts(hash);