diff options
author | Elliott Hughes <enh@google.com> | 2018-04-02 20:47:53 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-04-02 20:47:53 +0000 |
commit | 194e27bf5e1c10b504781a06fabe19571b79c3dc (patch) | |
tree | 158f186b4bf7d0dd0420b409b42f0fa8037c3c4b /fastboot/util.cpp | |
parent | b7ba61ffc55c6caa359c97ad364f5c06f92c41e6 (diff) | |
parent | f238d8751b9960362ae0cf7e5476ab510461db9d (diff) |
Merge "Modernize fastboot output format."
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); |