Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Jul 28, 2008
1 parent 22f458a commit f4a4b21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filedata.c
Original file line number Diff line number Diff line change
Expand Up @@ -1630,7 +1630,7 @@ gint file_data_verify_ci(FileData *fd)
strcmp(fd->path, fd->change->dest) == 0)
{
ret |= CHANGE_WARN_SAME;
DEBUG_1("Change checked: source and destination is the same: %s -> %s", fd->path, fd->change->dest);
DEBUG_1("Change checked: source and destination are the same: %s -> %s", fd->path, fd->change->dest);
}

if (!isdir(dest_dir))
Expand Down Expand Up @@ -1749,7 +1749,7 @@ gchar *file_data_get_error_string(gint error)
if (error & CHANGE_WARN_SAME)
{
if (result->len > 0) g_string_append(result, ", ");
g_string_append(result, _("source and destination is the same"));
g_string_append(result, _("source and destination are the same"));
}

if (error & CHANGE_WARN_CHANGED_EXT)
Expand Down

0 comments on commit f4a4b21

Please sign in to comment.