summaryrefslogtreecommitdiff
path: root/www/udmsearch/files/patch-src-udmutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'www/udmsearch/files/patch-src-udmutils.c')
-rw-r--r--www/udmsearch/files/patch-src-udmutils.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/udmsearch/files/patch-src-udmutils.c b/www/udmsearch/files/patch-src-udmutils.c
deleted file mode 100644
index a93abaa08d34..000000000000
--- a/www/udmsearch/files/patch-src-udmutils.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/udmutils.c.orig 2007-07-14 12:51:12.000000000 +0200
-+++ src/udmutils.c 2007-07-14 12:51:29.000000000 +0200
-@@ -724,7 +724,7 @@
- tmp[i++]='0';
- else while (num != 0){
- tmp[i++] = digits[(unsigned long) num % (unsigned) base];
-- (unsigned long) num /= (unsigned) base;
-+ num /= (unsigned) base;
- }
- if (i > precision)
- precision = i;