diff options
author | Jim Meyering <meyering@redhat.com> | 2007-11-18 21:20:37 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-11-18 21:20:37 +0100 |
commit | a9805326e455d53c8f740a27007a7f8a418257f4 (patch) | |
tree | 0e054c7689615d8e355642d2b6c77a0183f08c81 /src | |
parent | 98ed526f44839dec30d0f7dc352d919ee58f47ad (diff) | |
download | coreutils-a9805326e455d53c8f740a27007a7f8a418257f4.tar.xz |
* src/c99-to-c89.diff: Adjust seq.c offsets.
Diffstat (limited to 'src')
-rw-r--r-- | src/c99-to-c89.diff | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c99-to-c89.diff b/src/c99-to-c89.diff index c22c6e5e0..92fb677c6 100644 --- a/src/c99-to-c89.diff +++ b/src/c99-to-c89.diff @@ -108,7 +108,7 @@ diff -upr src/seq.c src/seq.c } return ret; -@@ -311,6 +313,7 @@ get_default_format (operand first, opera +@@ -317,6 +319,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 '.' */ @@ -116,7 +116,7 @@ diff -upr src/seq.c src/seq.c size_t width = MAX (first_width, last_width); if (width <= INT_MAX) { -@@ -318,6 +321,7 @@ get_default_format (operand first, opera +@@ -324,6 +327,7 @@ get_default_format (operand first, opera sprintf (format_buf, "%%0%d.%dLf", w, prec); return format_buf; } |