sgsn_test: Fix missing = in == type check

Change-Id: I696a7d25d2f4d19922e05a7e83c4aeec5c44fb07
Fixes: Coverity CID 135156
This commit is contained in:
Harald Welte 2016-11-26 14:58:36 +01:00
parent 8825c69409
commit c346f87371
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ static void test_subscriber_gsup(void)
/* Inject InsertSubscrData GSUP message */
last_updated_subscr = NULL;
rc = rx_gsup_message(insert_data_req, sizeof(insert_data_req));
OSMO_ASSERT(rc = -ENOTSUP); /* not connected */
OSMO_ASSERT(rc == -ENOTSUP); /* not connected */
OSMO_ASSERT(last_updated_subscr == s1);
/* Inject DeleteSubscrData GSUP message */