gsm48: Use NULL instead of 0 for pointers in C.

This commit is contained in:
Holger Hans Peter Freyther
2010-12-22 08:53:28 +01:00
parent 6003d6b928
commit f93e8fabd8

View File

@@ -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);
}