Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Feb 24, 2015
1 parent b53d90d commit 2db412b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions khmer/_khmermodule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4580,31 +4580,31 @@ static PyMethodDef khmer_hllcounter_methods[] = {

static PyGetSetDef khmer_hllcounter_getseters[] = {
{
"alpha",
(char const *)"alpha",
(getter)hllcounter_getalpha, NULL,
"alpha constant for this HLL counter.",
(char const *)"alpha constant for this HLL counter.",
NULL
},
{
"error_rate",
(char const *)"error_rate",
(getter)hllcounter_get_erate, (setter)hllcounter_set_erate,
"Error rate for this HLL counter. "
(char const *)"Error rate for this HLL counter. "
"Can be changed prior to first counting, but becomes read-only after "
"that (raising AttributeError)",
NULL
},
{
"ksize",
(char const *)"ksize",
(getter)hllcounter_get_ksize, (setter)hllcounter_set_ksize,
"k-mer size for this HLL counter."
(char const *)"k-mer size for this HLL counter."
"Can be changed prior to first counting, but becomes read-only after "
"that (raising AttributeError)",
NULL
},
{
"counters",
(char const *)"counters",
(getter)hllcounter_getcounters, NULL,
"Read-only internal counters. len(counters) == m == 2 ** p",
(char const *)"Read-only internal counters.",
NULL
},
{NULL} /* Sentinel */
Expand Down

0 comments on commit 2db412b

Please sign in to comment.