mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* scripts/output-format.sed: Fix bug in one of the s expressions which used / for one too many things.
This commit is contained in:
@ -27,12 +27,9 @@
|
||||
int
|
||||
system (const char *line)
|
||||
{
|
||||
int oldtype;
|
||||
int result;
|
||||
int oldtype = CANCEL_ASYNC ();
|
||||
|
||||
CANCEL_ASYNC (oldtype);
|
||||
|
||||
result = __libc_system (line);
|
||||
int result = __libc_system (line);
|
||||
|
||||
CANCEL_RESET (oldtype);
|
||||
|
||||
|
Reference in New Issue
Block a user