we'll deal with python2 to python3 port later

This commit is contained in:
Joshua Peisach 2024-05-22 14:02:34 -04:00
parent a8e5f6c0f7
commit db85bd1fa7
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
3 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View File

@ -6,4 +6,4 @@
*.dSYM
*.pyc
.DS_Store
*.bak

View File

@ -36,14 +36,14 @@ static char *_get_cdata(mxml_node_t *node) {
if (!node)
return NULL;
mxml_node_t *n = node->child;
// mxml_node_t *n = node->child;
while (n) {
if (n->type == MXML_OPAQUE)
return n->value.opaque;
// while (n) {
// if (n->type == MXML_OPAQUE)
// return n->value.opaque;
n = mxmlWalkNext(n, node, MXML_NO_DESCEND);
}
// n = mxmlWalkNext(n, node, MXML_NO_DESCEND);
// }
return NULL;
}

View File

@ -299,8 +299,8 @@ u32 LCQueueWait(u32);
void LCFlushQueue();
void LCAlloc(void *,u32);
void LCAllocNoInvalidate(void *,u32);
void LCAllocOneTag(BOOL,void *);
void LCAllocTags(BOOL,void *,u32);
void LCAllocOneTag(bool,void *);
void LCAllocTags(bool,void *,u32);
#define LCGetBase() ((void*)LC_BASE)
#ifdef __cplusplus