diff options
Diffstat (limited to 'fastboot/util.cpp')
-rw-r--r-- | fastboot/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/util.cpp b/fastboot/util.cpp index fb085e757..53fc1be29 100644 --- a/fastboot/util.cpp +++ b/fastboot/util.cpp @@ -44,7 +44,7 @@ double now() { void die(const char* fmt, ...) { va_list ap; va_start(ap, fmt); - fprintf(stderr,"error: "); + fprintf(stderr, "fastboot: error: "); vfprintf(stderr, fmt, ap); fprintf(stderr,"\n"); va_end(ap); |