From bf7ce1606d533a2a60d68504ae4d51dcb45cc21b Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 24 Feb 2011 09:09:05 -0500 Subject: [PATCH] Correct erroneous error message. Thanks to Bas Timmer via libcdio-help. --- src/cd-read.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/cd-read.c b/src/cd-read.c index 470c7c77..d2131e63 100644 --- a/src/cd-read.c +++ b/src/cd-read.c @@ -1,7 +1,6 @@ /* - $Id: cd-read.c,v 1.33 2008/06/19 15:44:13 flameeyes Exp $ - - Copyright (C) 2003, 2004, 2005, 2006, 2008 Rocky Bernstein + Copyright (C) 2003, 2004, 2005, 2006, 2008, 2011 Rocky Bernstein + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -434,7 +433,7 @@ parse_options (int argc, char *argv[]) /* We were given an end lsn. */ if (opts.end_lsn < opts.start_lsn) { report( stderr, - "%s: end LSN (%lu) needs to be less than start LSN (%lu)\n", + "%s: end LSN (%lu) needs to be grater than start LSN (%lu)\n", program_name, (unsigned long) opts.start_lsn, (unsigned long) opts.end_lsn ); free(program_name);