diff options
-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 |