day.c: Fix typo in error message

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2014-07-16 20:09:29 +02:00
parent 46d260a438
commit e6b0282a18

View File

@@ -642,7 +642,7 @@ struct day_item *day_cut_item(long date, int item_number)
recur_apoint_erase(p->item.rapt);
break;
default:
EXIT(_("unknwon type"));
EXIT(_("unknown item type"));
/* NOTREACHED */
}
@@ -671,7 +671,7 @@ int day_paste_item(struct day_item *p, long date)
recur_apoint_paste_item(p->item.rapt, date);
break;
default:
EXIT(_("unknwon type"));
EXIT(_("unknown item type"));
/* NOTREACHED */
}