Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jun 18, 2015
1 parent a7a2319 commit 406fda8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yara-python/yara-python.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ typedef struct
} Rules;


static Rules* Rules_NEW();
static Rules* Rules_NEW(void);

static void Rules_dealloc(
PyObject* self);
Expand Down Expand Up @@ -979,7 +979,7 @@ static PyObject* Rule_getattro(
}


static Rules* Rules_NEW()
static Rules* Rules_NEW(void)
{
Rules* rules = PyObject_NEW(Rules, &Rules_Type);

Expand Down

0 comments on commit 406fda8

Please sign in to comment.