Changeset 3621

Show
Ignore:
Timestamp:
09/01/08 14:19:28 (3 months ago)
Author:
bricks
Message:

added missing headers in tombo-note format

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • format-plugins/tomboy-note/src/tomboy_note.c

    r3620 r3621  
    2222#include "tomboy_note_internal.h" 
    2323 
     24#include <string.h> 
     25#include <assert.h> 
     26 
     27#define osync_assert(x) assert(x) 
     28 
    2429osync_bool tomboynote_validate(xmlDocPtr doc) { 
    2530        osync_assert(doc); 
     
    7883void tomboynote_parse_content_node(xmlNodePtr node, GString * output) { 
    7984        osync_assert(node); 
    80         osync_assert(output) 
     85        osync_assert(output); 
    8186 
    8287        xmlNodePtr cur;