Revert part of 3cb3e224b692 in code that I maintain.

This commit is contained in:
Stefan Krah 2017-01-08 01:11:27 +01:00
parent 631ada8424
commit dada5a8d75
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ PyObject *Struct = NULL;
PyObject *calcsize = NULL;
/* cache simple format string */
static const char simple_fmt[] = "B";
static const char *simple_fmt = "B";
PyObject *simple_format = NULL;
#define SIMPLE_FORMAT(fmt) (fmt == NULL || strcmp(fmt, "B") == 0)
#define FIX_FORMAT(fmt) (fmt == NULL ? "B" : fmt)