diff options
author | Andreas Schwab <schwab@suse.de> | 2014-05-13 17:06:58 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-05-13 17:16:02 +0200 |
commit | 01eb16fdb6c143884dcaeadf45ffdd725207eed5 (patch) | |
tree | 36a48484b205782cb45632c18186b551af7fd6d1 | |
parent | 637461d96563f3b7405df5b124ccfe843e537374 (diff) | |
download | glibc-01eb16fdb6c143884dcaeadf45ffdd725207eed5.tar glibc-01eb16fdb6c143884dcaeadf45ffdd725207eed5.tar.gz glibc-01eb16fdb6c143884dcaeadf45ffdd725207eed5.tar.bz2 glibc-01eb16fdb6c143884dcaeadf45ffdd725207eed5.zip |
Fix typo in assertion
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/grantpt.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2014-05-13 Andreas Schwab <schwab@suse.de> + + * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion. + 2014-05-12 Joseph Myers <joseph@codesourcery.com> * sysdeps/unix/sysv/linux/kernel-features.h [__s390__] diff --git a/sysdeps/unix/grantpt.c b/sysdeps/unix/grantpt.c index c4f067f036..410dc50cf9 100644 --- a/sysdeps/unix/grantpt.c +++ b/sysdeps/unix/grantpt.c @@ -229,7 +229,7 @@ grantpt (int fd) break; default: - assert(! "getpt: internal error: invalid exit code from pt_chown"); + assert(! "grantpt: internal error: invalid exit code from pt_chown"); } } #endif |