* unify error printing a bit (starting with lowercase)

This commit is contained in:
Dirk-Jan C. Binnema
2010-11-30 22:20:27 +02:00
parent bc039e22d6
commit ba2918ca41
10 changed files with 23 additions and 23 deletions

View File

@ -203,7 +203,7 @@ mu_util_create_dir_maybe (const gchar *path)
if (stat (path, &statbuf) == 0) {
if ((!S_ISDIR(statbuf.st_mode)) ||
(access (path, W_OK|R_OK) != 0)) {
g_warning ("Not a rw-directory: %s", path);
g_warning ("not a rw-directory: %s", path);
return FALSE;
}
}