diff options
Diffstat (limited to 'source/ap/ksh93/patches/ksh-20120801-roundit.patch')
-rw-r--r-- | source/ap/ksh93/patches/ksh-20120801-roundit.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/source/ap/ksh93/patches/ksh-20120801-roundit.patch b/source/ap/ksh93/patches/ksh-20120801-roundit.patch deleted file mode 100644 index 015bc85cd..000000000 --- a/source/ap/ksh93/patches/ksh-20120801-roundit.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up ksh-20120801/src/lib/libast/sfio/sfcvt.c.rounditgood ksh-20120801/src/lib/libast/sfio/sfcvt.c ---- ksh-20120801/src/lib/libast/sfio/sfcvt.c.rounditgood 2014-02-27 16:45:54.630161032 +0100 -+++ ksh-20120801/src/lib/libast/sfio/sfcvt.c 2014-02-27 16:45:54.658161205 +0100 -@@ -491,7 +491,7 @@ int format; /* conversion format */ - *decpt += 1; - if(!(format&SFFMT_EFORMAT)) - { /* add one more 0 for %f precision */ -- ep[-1] = '0'; -+ if(ep-sp>1) ep[-1] = '0'; - ep += 1; - } - } |