diff options
author | B. Watson <yalhcru@gmail.com> | 2015-10-28 23:48:46 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-10-28 23:48:46 +0700 |
commit | 908d2798bcbc477bd59dca0e29f5868f06c79de3 (patch) | |
tree | 193fee955ab44881abc5b95f05ac06d64c96536c /system/unac/size_t.diff | |
parent | 80aa8990f94c699626677b610c1e6782ca5c22a5 (diff) | |
download | slackbuilds-908d2798bcbc477bd59dca0e29f5868f06c79de3.tar.gz |
system/unac: Added (remove accents from text).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/unac/size_t.diff')
-rw-r--r-- | system/unac/size_t.diff | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/system/unac/size_t.diff b/system/unac/size_t.diff new file mode 100644 index 0000000000..e7ef82ba32 --- /dev/null +++ b/system/unac/size_t.diff @@ -0,0 +1,45 @@ +diff -r fd7eb0d70970 unac-1.8.0/unac.c +--- a/unac-1.8.0/unac.c Fri Sep 17 10:35:14 2010 +0200 ++++ b/unac-1.8.0/unac.c Fri Sep 17 10:36:07 2010 +0200 +@@ -13873,9 +13873,9 @@ + *out_lengthp = 0; + } else { + char* utf16 = 0; +- int utf16_length = 0; ++ size_t utf16_length = 0; + char* utf16_unaccented = 0; +- int utf16_unaccented_length = 0; ++ size_t utf16_unaccented_length = 0; + + if(convert(charset, utf16be(), in, in_length, &utf16, &utf16_length) < 0) { + return -1; +diff -r fd7eb0d70970 unac-1.8.0/unaccent.c +--- a/unac-1.8.0/unaccent.c Fri Sep 17 10:35:14 2010 +0200 ++++ b/unac-1.8.0/unaccent.c Fri Sep 17 10:40:34 2010 +0200 +@@ -90,7 +90,7 @@ + const char* charset = argv[optind++]; + + char* unaccented = 0; +- int unaccented_length = 0; ++ size_t unaccented_length = 0; + + if(optind >= argc) { + #define BUFFER_SIZE 10240 +@@ -101,7 +101,7 @@ + perror(""); + exit(1); + } +- printf("%.*s", unaccented_length, unaccented); ++ printf("%.*s", (int)unaccented_length, unaccented); + } + } else { + const char* string = argv[optind++]; +@@ -114,7 +114,7 @@ + + if(debug_level > UNAC_DEBUG_NONE) + fprintf(stderr, "unaccented version is "); +- printf("%.*s\n", unaccented_length, unaccented); ++ printf("%.*s\n", (int)unaccented_length, unaccented); + + if(optind < argc) { + const char* expected = argv[optind++]; |