Skip to content

Commit a2c361c

Browse files
authored
Merge pull request #2174 from kdk3776/tizen_10.0_prepare
[non-acr] Delete new line in dlog_print
2 parents 8f21158 + a051d55 commit a2c361c

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/application/native/guides/app-management/package-manager.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ To retrieve all package information for installed packages:
7575
package_info_get_installed_time(package_info, &installed_time);
7676
package_info_get_first_installed_time(package_info, &first_installed_time);
7777
78-
dlog_print(DLOG_INFO, TAG, "pkg \t= [%s]\n", pkg);
79-
dlog_print(DLOG_INFO, TAG, "label \t= [%s]\n", label);
80-
dlog_print(DLOG_INFO, TAG, "icon \t= [%s]\n", icon);
81-
dlog_print(DLOG_INFO, TAG, "version \t= [%s]\n", version);
82-
dlog_print(DLOG_INFO, TAG, "type \t= [%s]\n", type);
83-
dlog_print(DLOG_INFO, TAG, "storage \t= [%d]\n", storage);
84-
dlog_print(DLOG_INFO, TAG, "system \t= [%d]\n", system);
85-
dlog_print(DLOG_INFO, TAG, "removable \t= [%d]\n", removable);
86-
dlog_print(DLOG_INFO, TAG, "preload \t= [%d]\n", preload);
78+
dlog_print(DLOG_INFO, TAG, "pkg \t= [%s]", pkg);
79+
dlog_print(DLOG_INFO, TAG, "label \t= [%s]", label);
80+
dlog_print(DLOG_INFO, TAG, "icon \t= [%s]", icon);
81+
dlog_print(DLOG_INFO, TAG, "version \t= [%s]", version);
82+
dlog_print(DLOG_INFO, TAG, "type \t= [%s]", type);
83+
dlog_print(DLOG_INFO, TAG, "storage \t= [%d]", storage);
84+
dlog_print(DLOG_INFO, TAG, "system \t= [%d]", system);
85+
dlog_print(DLOG_INFO, TAG, "removable \t= [%d]", removable);
86+
dlog_print(DLOG_INFO, TAG, "preload \t= [%d]", preload);
8787
dlog_print(DLOG_INFO, TAG, "installed_time \t= [%d]", installed_time);
8888
dlog_print(DLOG_INFO, TAG, "first_installed_time \t= [%ld]", first_installed_time);
8989
@@ -131,9 +131,9 @@ To retrieve specific package information:
131131
package_info_get_label(package_info, &label);
132132
package_info_get_type(package_info, &type);
133133
134-
dlog_print(DLOG_INFO, TAG, "label \t= [%s]\n", label);
135-
dlog_print(DLOG_INFO, TAG, "icon \t= [%s]\n", icon);
136-
dlog_print(DLOG_INFO, TAG, "version \t= [%s]\n", version);
134+
dlog_print(DLOG_INFO, TAG, "label \t= [%s]", label);
135+
dlog_print(DLOG_INFO, TAG, "icon \t= [%s]", icon);
136+
dlog_print(DLOG_INFO, TAG, "version \t= [%s]", version);
137137
138138
free(label);
139139
free(icon);

0 commit comments

Comments
 (0)