~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/errmsg_notify/errmsg_notify.cc

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <cstdio>  /* for vsnprintf */
23
23
#include <stdarg.h>  /* for va_list */
24
24
#include <unistd.h>  /* for write(2) */
 
25
#include <iostream>
25
26
#include <libnotifymm.h>
26
27
#include <boost/scoped_ptr.hpp>
27
28
 
85
86
     }
86
87
     catch (Glib::Error& err)
87
88
     {
88
 
        fprintf(stderr, err.what().c_str());
 
89
        cerr << err.what() << endl;
89
90
     }
90
91
#endif
91
92