From efdaf6d989df9c942f013d22158aea6d71bc6656 Mon Sep 17 00:00:00 2001 From: ahodgkinson Date: Wed, 11 Oct 2006 23:07:44 +0000 Subject: [PATCH] FLAIM. Fixed mis-typed member of OPT_INFO structure. git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@981 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- flaim/src/flaim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaim/src/flaim.h b/flaim/src/flaim.h index 426bb96..e6c0af8 100644 --- a/flaim/src/flaim.h +++ b/flaim/src/flaim.h @@ -663,7 +663,7 @@ FLMUINT uiIxNum; ///< Index used to execute query if eOptType is qOptTypes::QOPT_USING_INDEX. FLMBOOL bDoRecMatch; ///< Record must be retrieved to test against query criteria.\ Only valid ///< if OPT_INFO::eOptType is qOptTypes::QOPT_USING_INDEX. - FLMUINT bDoKeyMatch; ///< Must match against index keys. Only valid if OPT_INFO::eOptType is qOptTypes::QOPT_USING_INDEX. + FLMBOOL bDoKeyMatch; ///< Must match against index keys. Only valid if OPT_INFO::eOptType is qOptTypes::QOPT_USING_INDEX. FLMUINT uiDrn; ///< DRN to read if OPT_INFO::eOptType is qOptTypes::QOPT_SINGLE_RECORD_READ. } OPT_INFO;