From 288c8a25750af694685ad71e08b6708729266aa9 Mon Sep 17 00:00:00 2001 From: schu Date: Tue, 13 Mar 2012 16:48:07 +0100 Subject: [PATCH] examples/diff: update example code Signed-off-by: schu --- examples/diff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/diff.c b/examples/diff.c index f80f7029c..20e14e511 100644 --- a/examples/diff.c +++ b/examples/diff.c @@ -172,8 +172,8 @@ int main(int argc, char *argv[]) !check_uint16_param(a, "--unified=", &opts.context_lines) && !check_uint16_param(a, "--inter-hunk-context=", &opts.interhunk_lines) && - !check_str_param(a, "--src-prefix=", &opts.src_prefix) && - !check_str_param(a, "--dst-prefix=", &opts.dst_prefix)) + !check_str_param(a, "--src-prefix=", &opts.old_prefix) && + !check_str_param(a, "--dst-prefix=", &opts.new_prefix)) usage("Unknown arg", a); }