Fwd: Missing { in sigaltstack example code

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello Michael,

I noticed a small typo in the man page of sigaltstack in the example
section, a { is missing :
http://man7.org/linux/man-pages/man2/sigaltstack.2.html

I believe :

> if (sigaltstack(&ss, NULL) == -1)
>     perror("sigaltstack");
>     exit(EXIT_FAILURE);
> }

should be :

> if (sigaltstack(&ss, NULL) == -1) {
>     perror("sigaltstack");
>     exit(EXIT_FAILURE);
> }

See you next year, and thank you for maintaining the manpages :)

Best regards,

Elie ROUDNINSKI

P.S : sorry for previous email with HTML ...
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Kernel Documentation]     [Netdev]     [Linux Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux