diff options
author | Rikard Falkeborn <rikard.falkeborn@gmail.com> | 2019-04-05 00:02:51 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-05-08 10:12:14 +1000 |
commit | f2a7fb2b96dd76f48b7750d1edeb6a85b7006856 (patch) | |
tree | a6580f932f6d93e5ee042c6376af018ccb06b10f /scripts/po/ru.po | |
parent | a8b3d1a62afaeee4f1586f6c463f6bf51f7a2d70 (diff) | |
download | pacman-f2a7fb2b96dd76f48b7750d1edeb6a85b7006856.tar.xz |
Fix clang 8 string-plus-int warnings
Clang 8 warns that adding a string to an integer does not append to
string. Indeed it doesn't, but that was not the intentetion. Use array
indexing as suggested by the compiler to silence the warning. There
should be no functional change.
Example of warning message:
alpm.c:71:54: warning: adding 'int' to a string does not append to the string [-Wstring-plus-int]
sprintf(hookdir, "%s%s", myhandle->root, SYSHOOKDIR + 1);
~~~~~~~~~~~^~~
alpm.c:71:54: note: use array indexing to silence this warning
sprintf(hookdir, "%s%s", myhandle->root, SYSHOOKDIR + 1);
^
& [ ]
1 warning generated.
Diffstat (limited to 'scripts/po/ru.po')
0 files changed, 0 insertions, 0 deletions