diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-05-28 11:36:48 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-28 11:36:48 -0500 |
commit | b1e35794172f1907834dfe5a81c19d4a91c8bfae (patch) | |
tree | 644d970d1460c4578cd30faaae6baab52fc1bdae /src | |
parent | 93fafad18ec091fdde6da024538b2f73eda74611 (diff) | |
download | ofono-b1e35794172f1907834dfe5a81c19d4a91c8bfae.tar.bz2 |
stkutil: Fix comment style
Diffstat (limited to 'src')
-rw-r--r-- | src/stkutil.c | 6 |
1 files 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; |