Merge "func_env: Compile in Solaris 11."

This commit is contained in:
Joshua Colp
2018-06-22 07:18:45 -05:00
committed by Gerrit Code Review

View File

@@ -307,7 +307,7 @@ static int stat_read(struct ast_channel *chan, const char *cmd, char *data,
snprintf(buf, len, "%d", (int) s.st_ctime); snprintf(buf, len, "%d", (int) s.st_ctime);
break; break;
case 'm': case 'm':
snprintf(buf, len, "%o", s.st_mode); snprintf(buf, len, "%o", (unsigned int) s.st_mode);
break; break;
} }
} }