From b6832575c161dda12a3a4502a0e114547f4535ee Mon Sep 17 00:00:00 2001 From: Reinhard Prix Date: Thu, 29 Sep 2005 12:03:23 +0000 Subject: [PATCH] fixed my erronous mysql include (should have no relative path prefix). svn path=/trunk/boinc/; revision=8314 --- db/db_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db_base.h b/db/db_base.h index a6809910bb..e83536e2ad 100644 --- a/db/db_base.h +++ b/db/db_base.h @@ -20,7 +20,7 @@ #ifndef _DB_BASE_ #define _DB_BASE_ -#include +#include // 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.