| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
And mark the static recursive function it calls as pure.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
And update MqNotebook.
The va_copy()s didn't seem to work. va_arg() in MqNotebook's
find_node_compare() returned garbage, preventing the node from being
found and causing the assertion in find_node() (as called by
mq_notebook_insert_sibling() and mq_notebook_insert_child()) to fail.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes:
CC src/marquee-notebook.o
In file included from src/notebook.c:29:0:
src/notebook.c: In function ‘mq_notebook_get_n_pages’:
src/tree.h:67:70: warning: pointer/integer type mismatch in conditional expression
#define mq_tree_size(node) ((node) ? (((MqTree *) (node))->size) : NULL)
^
src/notebook.c:253:9: note: in expansion of macro ‘mq_tree_size’
return mq_tree_size(MQ_TREE(notebook->tree));
^
src/notebook.c:253:2: warning: return makes integer from pointer without a cast
return mq_tree_size(MQ_TREE(notebook->tree));
^
|
| |
|
|
|