summaryrefslogtreecommitdiff
path: root/src/phonebook.c
diff options
context:
space:
mode:
authorSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2023-01-06 16:57:35 +0200
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2023-01-06 19:13:46 +0200
commitcd38e2b12d6f13dfd03eed207aa7f262e00099f1 (patch)
treec29f288e5714aac9ae5393ed8d82949beefcaff9 /src/phonebook.c
parentc97e4dad4fa1720cc510d44b404a1727907c22a5 (diff)
downloadsms-utils-cd38e2b12d6f13dfd03eed207aa7f262e00099f1.tar.gz
sms-utils-cd38e2b12d6f13dfd03eed207aa7f262e00099f1.tar.bz2
sms-utils-cd38e2b12d6f13dfd03eed207aa7f262e00099f1.zip
[GP-1842] Refactoring - Fixed indentations
This project uses tabs, not spaces. Make the indentation consistent.
Diffstat (limited to 'src/phonebook.c')
-rw-r--r--src/phonebook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/phonebook.c b/src/phonebook.c
index fc29d61..3165235 100644
--- a/src/phonebook.c
+++ b/src/phonebook.c
@@ -290,7 +290,7 @@ int phonebook_list_get(int fd, struct phonebook_list_info *list_info)
atcmd_writeline(fd, "AT+CPBR=%d,%d",
list_info->store.index_min, list_info->store.index_max);
tmp = atcmd_response_foreach_line(fd, list_info_callback, list_info);
- //CE910 reports an error if empty. Don't report error in this case
+ //CE910 reports an error if empty. Don't report error in this case
if ((tmp < 0) && strcmp(Global.core.model, "CE910-DUAL")) {
log_error("listing failed");
phonebook_list_free(list_info);