fix grammatical error

This commit is contained in:
Dave Reisner 2013-09-19 14:55:35 -04:00
parent d2421337f6
commit cecf24e7f0

View file

@ -424,7 +424,7 @@ static int mount_binds(const char *dest, char **l, unsigned long flags) {
if (stat(where, &dest_st) == 0) {
if ((source_st.st_mode & S_IFMT) != (dest_st.st_mode & S_IFMT)) {
log_error("The file types of %s and %s do not matching. Refusing bind mount",
log_error("The file types of %s and %s do not match. Refusing bind mount",
*x, where);
return -EINVAL;
}