change some identifiers from u_int64_t to unsigned long long

makes printf much easier on 64bit platforms...
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 94a7081..c3ea45d 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -416,7 +416,7 @@
 #define SMS_HDR_SIZE	128
 #define SMS_TEXT_SIZE	256
 struct gsm_sms {
-	u_int64_t id;
+	unsigned long long id;
 	struct gsm_subscriber *sender;
 	struct gsm_subscriber *receiver;
 
diff --git a/openbsc/src/db.c b/openbsc/src/db.c
index b86348c..369505a 100644
--- a/openbsc/src/db.c
+++ b/openbsc/src/db.c
@@ -592,7 +592,7 @@
 }
 
 int db_subscriber_assoc_imei(struct gsm_subscriber* subscriber, char imei[GSM_IMEI_LENGTH]) {
-	u_int64_t equipment_id, watch_id;
+	unsigned long long equipment_id, watch_id;
 	dbi_result result;
 
 	strncpy(subscriber->equipment.imei, imei,