From b1e35794172f1907834dfe5a81c19d4a91c8bfae Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 28 May 2010 11:36:48 -0500 Subject: [PATCH] stkutil: Fix comment style --- src/stkutil.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index c3a5612d..3b536ed8 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -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;