From 5c1b4c03770cc549473df83aa37ba15eb9ef54fc Mon Sep 17 00:00:00 2001 From: ewt Date: Thu, 27 Jun 1996 18:14:45 +0000 Subject: [PATCH] added support for INT8 types in query formats CVS patchset: 682 CVS date: 1996/06/27 18:14:45 --- query.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/query.c b/query.c index 60c4a30..beede3f 100644 --- a/query.c +++ b/query.c @@ -150,6 +150,11 @@ static const char * handleFormat(Header h, const char * chptr, printf(format, p); break; + case INT8_TYPE: + strcat(format, "d"); + printf(format, *((int_8 *) p)); + break; + case INT32_TYPE: if (isDate) { strcat(format, "s"); -- 2.7.4