Skip to content

Commit

Permalink
(__assert_fail): Fix typo in comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Aug 3, 2002
1 parent 1f3f143 commit c04ccaa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions assert/assert.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ extern const char *__progname;
# include FATAL_PREPARE_INCLUDE
#endif

#undef __assert_fail
void
__assert_fail (const char *assertion, const char *file, unsigned int line,
const char *function)
Expand All @@ -69,7 +68,7 @@ __assert_fail (const char *assertion, const char *file, unsigned int line,

(void) fflush (stderr);

/* We have to free the buffer since the appplication might catch the
/* We have to free the buffer since the application might catch the
SIGABRT. */
free (buf);
}
Expand All @@ -82,4 +81,4 @@ __assert_fail (const char *assertion, const char *file, unsigned int line,

abort ();
}
INTDEF(__assert_fail)
libc_hidden_def(__assert_fail)

0 comments on commit c04ccaa

Please sign in to comment.