1
0
Fork 0

Merge pull request #1124 from threez/patch-1

Fixes compile issue on FreeBSD/clang
This commit is contained in:
Jan Steemann 2014-11-26 15:02:34 +01:00
commit c64318da4c
1 changed files with 1 additions and 1 deletions

View File

@ -1873,7 +1873,7 @@ TRI_log_appender_t* TRI_CreateLogAppenderSyslog (char const* name,
value = atoi(facility);
}
else {
CODE * ptr = TRI_facilitynames;
CODE * ptr = (CODE *)TRI_facilitynames;
while (ptr->c_name != 0) {
if (strcmp(ptr->c_name, facility) == 0) {