aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gsm_04_08.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-12-22 08:53:28 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-22 18:26:36 +0100
commitf93e8fabd85a1659cd0487f3086f91e7ee4d1c1c (patch)
treef66265d2b39d2251ab1eaf29c04ef84451af73bf /openbsc/src/gsm_04_08.c
parent6003d6b928a04c5cd1eb41d64a915e930312efdb (diff)
gsm48: Use NULL instead of 0 for pointers in C.
Diffstat (limited to 'openbsc/src/gsm_04_08.c')
-rw-r--r--openbsc/src/gsm_04_08.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gsm_04_08.c b/openbsc/src/gsm_04_08.c
index 810115f5e..521dab41c 100644
--- a/openbsc/src/gsm_04_08.c
+++ b/openbsc/src/gsm_04_08.c
@@ -241,7 +241,7 @@ static void release_loc_updating_req(struct gsm_subscriber_connection *conn)
bsc_del_timer(&conn->loc_operation->updating_timer);
talloc_free(conn->loc_operation);
- conn->loc_operation = 0;
+ conn->loc_operation = NULL;
msc_release_connection(conn);
}