From 521ac7a89adb97bcd1781b4131333554ccd4de87 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Sat, 27 Aug 2011 20:36:34 -0700 Subject: Refined upb_status. --- benchmarks/parsetostruct.upb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'benchmarks/parsetostruct.upb.c') diff --git a/benchmarks/parsetostruct.upb.c b/benchmarks/parsetostruct.upb.c index f44b650..d360f05 100644 --- a/benchmarks/parsetostruct.upb.c +++ b/benchmarks/parsetostruct.upb.c @@ -20,7 +20,8 @@ static bool initialize() upb_symtab *s = upb_symtab_new(); upb_read_descriptorfile(s, MESSAGE_DESCRIPTOR_FILE, &status); if(!upb_ok(&status)) { - upb_status_print(&status, stderr); + fprintf(stderr, "Error reading descriptor: %s\n", + upb_status_getstr(&status)); return false; } @@ -76,7 +77,6 @@ static size_t run(int i) return len; err: - fprintf(stderr, "Decode error: "); - upb_status_print(&status, stderr); + fprintf(stderr, "Decode error: %s", upb_status_getstr(&status)); return 0; } -- cgit v1.2.3