aboutsummaryrefslogtreecommitdiff
path: root/util-linux/readprofile.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 02:24:24 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 02:24:24 +0100
commit6b9f1633537e2ff06eb1a0741e4598a294f40fcb (patch)
treea13f4f3558c2988bc95b5a59c9996da64a0bd570 /util-linux/readprofile.c
parent17323a6245597f16321e6bf99536ae9bb89c79cf (diff)
downloadbusybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.gz
busybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.bz2
busybox-w32-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.zip
*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/readprofile.c')
-rw-r--r--util-linux/readprofile.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/util-linux/readprofile.c b/util-linux/readprofile.c
index 1f5ba2ecc..219654496 100644
--- a/util-linux/readprofile.c
+++ b/util-linux/readprofile.c
@@ -176,9 +176,11 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
176 /* ignore any LEADING (before a '[tT]' symbol is found) 176 /* ignore any LEADING (before a '[tT]' symbol is found)
177 Absolute symbols */ 177 Absolute symbols */
178 if ((*mode == 'A' || *mode == '?') && total == 0) continue; 178 if ((*mode == 'A' || *mode == '?') && total == 0) continue;
179 if (*mode != 'T' && *mode != 't' && 179 if (*mode != 'T' && *mode != 't'
180 *mode != 'W' && *mode != 'w') 180 && *mode != 'W' && *mode != 'w'
181 ) {
181 break; /* only text is profiled */ 182 break; /* only text is profiled */
183 }
182 184
183 if (indx >= len / sizeof(*buf)) 185 if (indx >= len / sizeof(*buf))
184 bb_error_msg_and_die("profile address out of range. " 186 bb_error_msg_and_die("profile address out of range. "