summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-03-21 20:58:01 +0100
committerJim Meyering <meyering@redhat.com>2008-03-21 21:01:10 +0100
commitc3869f6564f4709025d2a8a344116ba4239e51b4 (patch)
tree89458e8ea6d7e682bb140a941d38ec479d6b6a91 /src
parenta0851554bd52038ed47e46ee521ce74a5a09f747 (diff)
downloadcoreutils-c3869f6564f4709025d2a8a344116ba4239e51b4.tar.xz
* src/c99-to-c89.diff: Adjust seq.c offsets.
Diffstat (limited to 'src')
-rw-r--r--src/c99-to-c89.diff8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/c99-to-c89.diff b/src/c99-to-c89.diff
index 98c93c604..49b6451af 100644
--- a/src/c99-to-c89.diff
+++ b/src/c99-to-c89.diff
@@ -126,7 +126,7 @@ diff -upr src/seq.c src/seq.c
}
return ret;
-@@ -338,6 +340,7 @@ get_default_format (operand first, opera
+@@ -339,6 +341,7 @@ get_default_format (operand first, opera
size_t last_width = last.width + (prec - last.precision);
if (last.precision && prec == 0)
last_width--; /* don't include space for '.' */
@@ -134,7 +134,7 @@ diff -upr src/seq.c src/seq.c
size_t width = MAX (first_width, last_width);
if (width <= INT_MAX)
{
-@@ -345,6 +348,7 @@ get_default_format (operand first, opera
+@@ -346,6 +349,7 @@ get_default_format (operand first, opera
sprintf (format_buf, "%%0%d.%dLf", w, prec);
return format_buf;
}
@@ -142,7 +142,7 @@ diff -upr src/seq.c src/seq.c
}
else
{
-@@ -433,6 +437,7 @@ main (int argc, char **argv)
+@@ -434,6 +438,7 @@ main (int argc, char **argv)
if (format_str)
{
validate_format (format_str);
@@ -150,7 +150,7 @@ diff -upr src/seq.c src/seq.c
char const *f = long_double_format (format_str, &layout);
if (! f)
{
-@@ -440,6 +445,7 @@ main (int argc, char **argv)
+@@ -441,6 +446,7 @@ main (int argc, char **argv)
usage (EXIT_FAILURE);
}
format_str = f;