[12129] Improve a little thing from last commit. Thanks to Reamer for pointing

This commit is contained in:
Schmoozerd 2012-08-28 12:51:55 +02:00 committed by Antz
parent 6e76dbae3f
commit 23c0c6ab3a
2 changed files with 2 additions and 2 deletions

View file

@ -151,8 +151,8 @@ void SqlPlainPreparedStatement::DataToString(const SqlStmtFieldData& data, std::
std::string tmp = data.toStr(); std::string tmp = data.toStr();
m_pConn.DB().escape_string(tmp); m_pConn.DB().escape_string(tmp);
fmt << "'" << tmp << "'"; fmt << "'" << tmp << "'";
break;
} }
case FIELD_NONE: break; case FIELD_NONE: break;
break;
} }
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12128" #define REVISION_NR "12129"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__