coccicheck: use --all-includes by default
[gitweb.git] / trailer.c
index 94b387b499714911c9dfb6dd0940cb3f25a2397e..c6ea9ac64d75292021919ad54462a3e4b782b080 100644 (file)
--- a/trailer.c
+++ b/trailer.c
@@ -234,7 +234,7 @@ static const char *apply_command(const char *command, const char *arg)
        cp.use_shell = 1;
 
        if (capture_command(&cp, &buf, 1024)) {
-               error("running trailer command '%s' failed", cmd.buf);
+               error(_("running trailer command '%s' failed"), cmd.buf);
                strbuf_release(&buf);
                result = xstrdup("");
        } else {
@@ -562,7 +562,7 @@ static int git_trailer_config(const char *conf_key, const char *value, void *cb)
                        warning(_("unknown value '%s' for key '%s'"), value, conf_key);
                break;
        default:
-               die("internal bug in trailer.c");
+               die("BUG: trailer.c: unhandled type %d", type);
        }
        return 0;
 }