summaryrefslogtreecommitdiffstats
path: root/src/pacman/pacman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/pacman.c')
-rw-r--r--src/pacman/pacman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 78407d67..2cd99cbb 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -218,10 +218,10 @@ static void setarch(const char *arch)
if (strcmp(arch, "auto") == 0) {
struct utsname un;
uname(&un);
- pm_printf(PM_LOG_DEBUG, "config: architecture: %s\n", un.machine);
+ pm_printf(PM_LOG_DEBUG, "config: Architecture: %s\n", un.machine);
alpm_option_set_arch(un.machine);
} else {
- pm_printf(PM_LOG_DEBUG, "config: architecture: %s\n", arch);
+ pm_printf(PM_LOG_DEBUG, "config: Architecture: %s\n", arch);
alpm_option_set_arch(arch);
}
}