> + argv_array_pushl(&args, "reflog", "delete", "--updateref", "--rewrite", NULL); > + argv_array_push(&args, info->revision); > + ret = cmd_reflog(args.argc, args.argv, prefix); > + if (!ret) { > + if (!quiet) { > + printf(_("Dropped %s (%s)\n"), info->revision, sha1_to_hex(info->w_commit.hash)); > + } The brackets are not needed. > + } else { > + return error(_("%s: Could not drop stash entry"), info->revision); > + }