diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index b5b9a6f2..f32153cb 100644 --- a/src/common.c +++ b/src/common.c @@ -396,7 +396,7 @@ const char *phone_number_to_string(const struct ofono_phone_number *ph) void string_to_phone_number(const char *str, struct ofono_phone_number *ph) { - if (strlen(str) && str[0] == '+') { + if (str[0] == '+') { strcpy(ph->number, str+1); ph->type = 145; /* International */ } else { |