stkutil: Fix comment style

This commit is contained in:
Denis Kenzior 2010-05-28 11:36:48 -05:00
parent 93fafad18e
commit b1e3579417
1 changed files with 4 additions and 2 deletions

View File

@ -3614,9 +3614,11 @@ static gboolean build_dataobj_at_response(struct stk_tlv_builder *tlv,
if (data == NULL)
return TRUE;
/* "If the AT Response string is longer than the maximum length
/*
* "If the AT Response string is longer than the maximum length
* capable of being transmitted to the UICC then the AT Response
* string shall be truncated to this length by the terminal." */
* string shall be truncated to this length by the terminal."
*/
len = strlen(data);
if (len > 240) /* Safe pick */
len = 240;