diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-05-11 12:29:11 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-11 12:29:11 -0500 |
commit | 9d56691898912db5f9ebffca057baea6ad8338b8 (patch) | |
tree | ceb8c919057e93d14bb6f60843c5646dcb825449 | |
parent | a3da155828b22bf68fe553b39fe1c0e954b52446 (diff) | |
download | ofono-9d56691898912db5f9ebffca057baea6ad8338b8.tar.bz2 |
stkutil: Don't use escaped strings
In general this is bad style, using concatentated strings ala "" "" is
better.
-rw-r--r-- | unit/test-stkutil.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c index 65688ea2..1b24df3a 100644 --- a/unit/test-stkutil.c +++ b/unit/test-stkutil.c @@ -3235,10 +3235,11 @@ static struct play_tone_test play_tone_data_119 = { .pdu = play_tone_119, .pdu_len = sizeof(play_tone_119), .qualifier = 0x00, - .alpha_id = "This command instructs the ME to play an audio tone. \ -Upon receiving this command, the ME shall check if it is currently in, or \ -in the process of setting up (SET-UP message sent to the network, \ -see GSM\"04.08\"(8)), a speech call. - If the ME I" + .alpha_id = "This command instructs the ME to play an audio tone. " + "Upon receiving this command, the ME shall check " + "if it is currently in, or in the process of setting " + "up (SET-UP message sent to the network, see " + "GSM\"04.08\"(8)), a speech call. - If the ME I" }; static struct play_tone_test play_tone_data_1110 = { |