Changeset 3621
- Timestamp:
- 09/01/08 14:19:28 (3 months ago)
- Files:
-
- 1 modified
-
format-plugins/tomboy-note/src/tomboy_note.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
format-plugins/tomboy-note/src/tomboy_note.c
r3620 r3621 22 22 #include "tomboy_note_internal.h" 23 23 24 #include <string.h> 25 #include <assert.h> 26 27 #define osync_assert(x) assert(x) 28 24 29 osync_bool tomboynote_validate(xmlDocPtr doc) { 25 30 osync_assert(doc); … … 78 83 void tomboynote_parse_content_node(xmlNodePtr node, GString * output) { 79 84 osync_assert(node); 80 osync_assert(output) 85 osync_assert(output); 81 86 82 87 xmlNodePtr cur;
