From 16ee7ff60aee87829916837bcb2a200ce72870d9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 24 Apr 2006 10:30:44 +0000 Subject: [PATCH] Cast to long --- zoom/zoomsh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zoom/zoomsh.c b/zoom/zoomsh.c index cad805f..ad82948 100644 --- a/zoom/zoomsh.c +++ b/zoom/zoomsh.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoomsh.c,v 1.40 2006-04-21 10:28:07 adam Exp $ + * $Id: zoomsh.c,v 1.41 2006-04-24 10:30:44 adam Exp $ */ /** \file zoomsh.c @@ -357,7 +357,7 @@ static void cmd_search (ZOOM_connection *c, ZOOM_resultset *r, int count = ZOOM_options_get_int (options, "count", 0); printf ("%s: %ld hits\n", ZOOM_connection_option_get(c[i], "host"), - ZOOM_resultset_size(r[i])); + (long) ZOOM_resultset_size(r[i])); /* and display */ display_records (c[i], r[i], start, count); } -- 1.7.10.4