aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libmsc/db.c
diff options
context:
space:
mode:
authorAlexander Chemeris <alexander.chemeris@gmail.com>2013-10-04 02:42:25 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-04 08:18:01 +0200
commit8c16928beb6559f799cf56efc82bfcaf49fce869 (patch)
tree05cf24e02d9acb62050df5c54b66560cad7adf13 /openbsc/src/libmsc/db.c
parent86d46c5c7a41d61927f29d660b32edad8f03d0dc (diff)
Fix typo ',' -> ';' at the end of a line.
Funny, this is a correct C expression and doesn't change execution, thus it stayed unnoticed for quite a while.
Diffstat (limited to 'openbsc/src/libmsc/db.c')
-rw-r--r--openbsc/src/libmsc/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libmsc/db.c b/openbsc/src/libmsc/db.c
index 21abce9de..9a8cd886b 100644
--- a/openbsc/src/libmsc/db.c
+++ b/openbsc/src/libmsc/db.c
@@ -1015,7 +1015,7 @@ int db_subscriber_assoc_imei(struct gsm_subscriber *subscriber, char imei[GSM_IM
dbi_result result;
strncpy(subscriber->equipment.imei, imei,
- sizeof(subscriber->equipment.imei)-1),
+ sizeof(subscriber->equipment.imei)-1);
result = dbi_conn_queryf(conn,
"INSERT OR IGNORE INTO Equipment "