[subscriber] Change id to long long unsigned int (Andreas Eversberg)

Changes the subscriber id type defintion from "long unsigned int" to "long
long unsigned int". Without, printf with '%llu' caused a crash.
This commit is contained in:
Holger Freyther 2009-06-02 03:24:54 +00:00
parent f7b2a0ec7f
commit 213b20bec0
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#define GSM_EXTENSION_LENGTH 128
struct gsm_subscriber {
long unsigned int id;
long long unsigned int id;
char imsi[GSM_IMSI_LENGTH];
char tmsi[GSM_TMSI_LENGTH];
u_int16_t lac;