long long portability

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2291 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.7
Stéphane Fillod, F8CFE 2008-02-13 20:59:15 +00:00
rodzic 59517b2706
commit 851d87d328
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kenwood backend - TS2000 description
* Copyright (c) 2000-2002 by Stephane Fillod
*
* $Id: ts2k.c,v 1.5 2002-06-30 10:17:03 dedmons Exp $
* $Id: ts2k.c,v 1.6 2008-02-13 20:59:15 fillods 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
@ -63,7 +63,7 @@
* Hamlib Kenwood backend - main file
* Copyright (c) 2000-2002 by Stephane Fillod
*
* $Id: ts2k.c,v 1.5 2002-06-30 10:17:03 dedmons Exp $
* $Id: ts2k.c,v 1.6 2008-02-13 20:59:15 fillods Exp $
*/
@ -745,7 +745,7 @@ int ts2k_set_freq(RIG * rig, vfo_t vfo, freq_t freq)
"ts2k_set_freq: unsupported VFO %u\n", vfo);
return -RIG_EINVAL;
}
freq_len = sprintf(freqbuf, "F%c%011Lu;", vfo_letter, freq);
freq_len = sprintf(freqbuf, "F%c%011"PRIll";", vfo_letter, freq);
ack_len = 14;
retval = ts2k_transaction(rig, freqbuf, freq_len, NULL, NULL);
@ -806,7 +806,7 @@ int ts2k_get_freq(RIG * rig, vfo_t vfo, freq_t * freq)
return -RIG_ERJCTED;
}
sscanf(freqbuf + 2, "%llu", freq);
sscanf(freqbuf + 2, "%"SCNll, freq);
return RIG_OK;
}