From: José Fonseca Date: Fri, 20 May 2011 22:24:16 +0000 (+0100) Subject: Fix spacing of error message. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=e99b927acc16dec839587f711d97175dd90f38cf;p=apitrace Fix spacing of error message. --- diff --git a/trace_parser.cpp b/trace_parser.cpp index 30df3f9..88e51d8 100644 --- a/trace_parser.cpp +++ b/trace_parser.cpp @@ -59,7 +59,7 @@ bool Parser::open(const char *filename) { version = read_uint(); if (version > TRACE_VERSION) { - std::cerr << "error: unsupported format version" << version << "\n"; + std::cerr << "error: unsupported trace format version " << version << "\n"; return false; }