Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct counf.
  • Loading branch information
Mark Clarkstone authored and perexg committed Mar 28, 2016
1 parent 9700bb5 commit 98b22bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/memoryinfo.c
Expand Up @@ -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,
},
Expand Down

0 comments on commit 98b22bd

Please sign in to comment.