diff options
author | ayhanyalcinsoy <ayhanyalcinsoy@pisilinux.org> | 2019-12-27 15:23:57 +0300 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2020-01-08 17:47:54 +0100 |
commit | c1599fc5c9800086548595d1f1464619a7024d06 (patch) | |
tree | bc73d11d1a8791d848f692234752c66205b09152 /i18npool | |
parent | a86a2a1c1ceb7203857d4317913c5b1bb9feb4aa (diff) |
tdf#96505:Get rid of cargo cult long integer literals
Change-Id: I6ee1f79d4b96c4ed161eff11c1b75574d89902dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85843
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/collator/gencoll_rule.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/collator/gencoll_rule.cxx b/i18npool/source/collator/gencoll_rule.cxx index 5eb659c280b1..091ff6b2fa90 100644 --- a/i18npool/source/collator/gencoll_rule.cxx +++ b/i18npool/source/collator/gencoll_rule.cxx @@ -88,7 +88,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) exit(1); } - fseek(fp, 0L, SEEK_END); + fseek(fp, 0, SEEK_END); int fileSize = ftell(fp); rewind(fp); |