diff options
author | Mattias Andrée <maandree@kth.se> | 2023-06-23 21:38:40 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-06-23 21:38:40 +0200 |
commit | 77e1bdd9a9806793b1789d733777d33c50f51739 (patch) | |
tree | d19d90affa04372f09eef6c8c61e270364c11991 /asroot.c | |
parent | Add reference to editasroot (diff) | |
download | asroot-77e1bdd9a9806793b1789d733777d33c50f51739.tar.gz asroot-77e1bdd9a9806793b1789d733777d33c50f51739.tar.bz2 asroot-77e1bdd9a9806793b1789d733777d33c50f51739.tar.xz |
Fix typos
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | asroot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -237,7 +237,7 @@ check_password(void) for (;;) { hostname = realloc(hostname, size *= 2); if (!hostname) { - fprintf(stderr, "%s: realloc1 %zu: %s\n", argv0, size, strerror(errno)); + fprintf(stderr, "%s: realloc %zu: %s\n", argv0, size, strerror(errno)); } *hostname = 0; if (!gethostname(hostname, size)) { |