1
0
Fork 0

OsmoCore: Fix the calls by ending them with '.'

This commit is contained in:
Holger Hans Peter Freyther 2010-10-20 21:36:04 +02:00
parent 6e28e1f343
commit 7d98500e4e
1 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ Object subclass: OSMOCore [
]
OSMOCore class >> bsc_select_main: poll [
self logDebug: '#>>bsc_select_main: called' area: #osmocore
self logDebug: '#>>bsc_select_main: called' area: #osmocore.
<cCall: 'bsc_select_main' returning: #int args: #(#int) >
]
@ -59,27 +59,27 @@ Object subclass: OSMOCore [
]
OSMOCore class >> msgb_length: aMsg [
self logDebug: '#>>msgb_length: called' area: #osmocore
self logDebug: '#>>msgb_length: called' area: #osmocore.
<cCall: 'msgb_length' returning: #uInt args: #(#cObject) >
]
OSMOCore class >> msgb_data: aMsg [
self logDebug: '#>>msgb_data: called' area: #osmocore
self logDebug: '#>>msgb_data: called' area: #osmocore.
<cCall: 'msgb_data' returning: #cObject args: #(#cObject) >
]
OSMOCore class >> msgb_free: aMsg [
self logDebug: '#>>msgb_free: called' area: #osmocore
self logDebug: '#>>msgb_free: called' area: #osmocore.
<cCall: 'msgb_free' returning: #void args: #(#cObject) >
]
OSMOCore class >> gsm0480_create_ussd_resp: invokeId trans: transId text: aText [
self logDebug: '#>>gsm0480_create_ussd_resp: called' area: #osmocore
self logDebug: '#>>gsm0480_create_ussd_resp: called' area: #osmocore.
<cCall: 'gsm0480_create_ussd_resp' returning: #cObject args: #(#int #int #string) >
]
OSMOCore class >> gsm0808_prepend_dtap_header: msg linkId: aId [
self logDebug: '#>>gsm0808_prepend_dtap_header: called' area: #osmocore
self logDebug: '#>>gsm0808_prepend_dtap_header: called' area: #osmocore.
<cCall: 'gsm0808_prepend_dtap_header' returning: #void args: #(#cObject #uInt) >
]
]