Skip to content
  • Rikard Falkeborn's avatar
    Fix clang 8 string-plus-int warnings · f2a7fb2b
    Rikard Falkeborn authored and Allan McRae's avatar Allan McRae committed
    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.
    f2a7fb2b