Revision e4cb3693a45a74ac9fdd142ab6392832b0a895d3 authored by Junio C Hamano on 30 August 2021, 23:06:05 UTC, committed by Johannes Schindelin on 22 March 2023, 17:00:36 UTC
"git range-diff" code clean-up. Needed to pacify modern GCC versions.

* jk/range-diff-fixes:
  range-diff: use ssize_t for parsed "len" in read_patches()
  range-diff: handle unterminated lines in read_patches()
  range-diff: drop useless "offset" variable from read_patches()
2 parent s 3c7896e + c025b4b
Raw File
annotate.c
/*
 * "git annotate" builtin alias
 *
 * Copyright (C) 2006 Ryan Anderson
 */
#include "git-compat-util.h"
#include "builtin.h"
#include "strvec.h"

int cmd_annotate(int argc, const char **argv, const char *prefix)
{
	struct strvec args = STRVEC_INIT;
	int i;

	strvec_pushl(&args, "annotate", "-c", NULL);

	for (i = 1; i < argc; i++) {
		strvec_push(&args, argv[i]);
	}

	return cmd_blame(args.nr, args.v, prefix);
}
back to top