fixed my erronous mysql include (should have no relative path prefix).

svn path=/trunk/boinc/; revision=8314
This commit is contained in:
Reinhard Prix 2005-09-29 12:03:23 +00:00
parent c8d09966cf
commit b6832575c1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#ifndef _DB_BASE_ #ifndef _DB_BASE_
#define _DB_BASE_ #define _DB_BASE_
#include <mysql/mysql.h> #include <mysql.h>
// if SQL columns are not 'not null', you must use these safe_atoi, safe_atof // if SQL columns are not 'not null', you must use these safe_atoi, safe_atof
// instead of atoi, atof, since the strings returned by MySQL may be NULL. // instead of atoi, atof, since the strings returned by MySQL may be NULL.