Freestyle: use bool instead of int.

Patch contribution by flokkievids (Folkert de Vries).  Thanks!
This commit is contained in:
2014-06-24 22:44:53 +09:00
parent c5ccbacdaa
commit 252eaed483
25 changed files with 49 additions and 49 deletions

View File

@@ -47,7 +47,7 @@ extern PyTypeObject Interface0D_Type;
typedef struct {
PyObject_HEAD
Interface0D *if0D;
int borrowed; /* non-zero if *if0D is a borrowed object */
bool borrowed; /* true if *if0D is a borrowed object */
} BPy_Interface0D;
/*---------------------------Python BPy_Interface0D visible prototypes-----------*/