[8714] Fix compilation on Visual Studio 2010 Beta 2.

Signed-off-by: Ambal <pogrebniak@gala.net>
This commit is contained in:
Ambal 2009-10-23 14:51:30 +03:00
parent 2588cdabfc
commit b1888bb343
5 changed files with 23 additions and 20 deletions

View file

@ -107,7 +107,7 @@ bool SqlQueryHolder::SetQuery(size_t index, const char *sql)
}
/// not executed yet, just stored (it's not called a holder for nothing)
m_queries[index] = SqlResultPair(strdup(sql), NULL);
m_queries[index] = SqlResultPair(strdup(sql), (QueryResult*)NULL);
return true;
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8713"
#define REVISION_NR "8714"
#endif // __REVISION_NR_H__