From ca247927bd5445e77391ffb98f713b2cd258c017 Mon Sep 17 00:00:00 2001 From: Wei Yongjun Date: Mon, 17 May 2010 15:15:44 +0800 Subject: [PATCH] tests: fix compile warning of tests/test-ovsdb.c This patch fixed the following compile warning: tests/test-ovsdb.c: In function 'do_evaluate_conditions': tests/test-ovsdb.c:744: warning: format '%2d' expects type 'int', but argument 2 has type 'size_t' tests/test-ovsdb.c: In function 'do_execute_mutations': tests/test-ovsdb.c:850: warning: format '%2d' expects type 'int', but argument 2 has type 'size_t' tests/test-ovsdb.c: In function 'do_query': tests/test-ovsdb.c:972: warning: format '%2d' expects type 'int', but argument 2 has type 'size_t' tests/test-ovsdb.c: In function 'do_query_distinct': tests/test-ovsdb.c:1105: warning: format '%2d' expects type 'int', but argument 2 has type 'size_t' tests/test-ovsdb.c: In function 'parse_uuids': tests/test-ovsdb.c:1600: warning: format '%d' expects type 'int', but argument 2 has type 'size_t' Signed-off-by: Wei Yongjun --- tests/test-ovsdb.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test-ovsdb.c b/tests/test-ovsdb.c index 41308d523..672759be8 100644 --- a/tests/test-ovsdb.c +++ b/tests/test-ovsdb.c @@ -741,7 +741,7 @@ do_evaluate_conditions(int argc OVS_UNUSED, char *argv[]) json_destroy(json); for (i = 0; i < n_conditions; i++) { - printf("condition %2d:", i); + printf("condition %2zu:", i); for (j = 0; j < n_rows; j++) { bool result = ovsdb_condition_evaluate(rows[j], &conditions[i]); if (j % 5 == 0) { @@ -847,7 +847,7 @@ do_execute_mutations(int argc OVS_UNUSED, char *argv[]) json_destroy(json); for (i = 0; i < n_sets; i++) { - printf("mutation %2d:\n", i); + printf("mutation %2zu:\n", i); for (j = 0; j < n_rows; j++) { struct ovsdb_error *error; struct ovsdb_row *row; @@ -969,7 +969,7 @@ do_query(int argc OVS_UNUSED, char *argv[]) memset(cbdata.counts, 0, cbdata.n_rows * sizeof *cbdata.counts); ovsdb_query(table, &cnd, do_query_cb, &cbdata); - printf("query %2d:", i); + printf("query %2zu:", i); for (j = 0; j < cbdata.n_rows; j++) { if (j % 5 == 0) { putchar(' '); @@ -1102,7 +1102,7 @@ do_query_distinct(int argc OVS_UNUSED, char *argv[]) } ovsdb_row_set_destroy(&results); - printf("query %2d:", i); + printf("query %2zu:", i); for (j = 0; j < n_rows; j++) { int count = rows[j].class->count; @@ -1597,7 +1597,7 @@ parse_uuids(const struct json *json, struct ovsdb_symbol_table *symtab, struct uuid uuid; if (json->type == JSON_STRING && uuid_from_string(&uuid, json->u.string)) { - char *name = xasprintf("#%d#", *n); + char *name = xasprintf("#%zu#", *n); fprintf(stderr, "%s = "UUID_FMT"\n", name, UUID_ARGS(&uuid)); ovsdb_symbol_table_put(symtab, name, &uuid, false); free(name); -- 2.20.1