From: Mark Clarkstone Date: Sun, 27 Mar 2016 21:36:32 +0000 (+0100) Subject: Correct counf. X-Git-Tag: v4.2.1~790 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98b22bd606706a50a581ebd87b98401892773b24;p=thirdparty%2Ftvheadend.git Correct counf. --- diff --git a/src/memoryinfo.c b/src/memoryinfo.c index d76a914e4..1ed232975 100644 --- a/src/memoryinfo.c +++ b/src/memoryinfo.c @@ -60,14 +60,14 @@ const idclass_t memoryinfo_class = { { .type = PT_S64_ATOMIC, .id = "count", - .name = N_("Counf of objects"), + .name = N_("Count of objects"), .off = offsetof(memoryinfo_t, my_count), .opts = PO_RDONLY | PO_NOSAVE, }, { .type = PT_S64_ATOMIC, .id = "peak_count", - .name = N_("Peak counf of objects"), + .name = N_("Peak count of objects"), .off = offsetof(memoryinfo_t, my_peak_count), .opts = PO_RDONLY | PO_NOSAVE, },