From 435337880dc2bcbda9c48a5f4058ef78871af5b0 Mon Sep 17 00:00:00 2001 From: "Joop Stakenborg, PG4I" Date: Mon, 10 Apr 2006 18:00:38 +0000 Subject: [PATCH] long long really needed here? git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2103 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- kenwood/kenwood.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kenwood/kenwood.c b/kenwood/kenwood.c index 4ac0dc10a..01dec62bd 100644 --- a/kenwood/kenwood.c +++ b/kenwood/kenwood.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - main file * Copyright (c) 2000-2005 by Stephane Fillod and others * - * $Id: kenwood.c,v 1.92 2006-03-14 08:36:38 pa4tu Exp $ + * $Id: kenwood.c,v 1.93 2006-04-10 18:00:38 pa4tu Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -377,7 +377,7 @@ int kenwood_set_freq(RIG *rig, vfo_t vfo, freq_t freq) vfo); return -RIG_EINVAL; } - freq_len = sprintf(freqbuf,"F%c%011"PRIll";", vfo_letter, (long long)freq); + freq_len = sprintf(freqbuf,"F%c%011ld;", vfo_letter, (long)freq); ack_len = 0; retval = kenwood_transaction (rig, freqbuf, freq_len, ackbuf, &ack_len);