View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001541 | 1003.1(2016/18)/Issue7+TC2 | System Interfaces | public | 2021-12-21 09:43 | 2024-06-11 09:07 |
Reporter | andras_farkas | Assigned To | |||
Priority | normal | Severity | Editorial | Type | Enhancement Request |
Status | Closed | Resolution | Accepted | ||
Name | Andras Farkas | ||||
Organization | |||||
User Reference | |||||
Section | atoi | ||||
Page Number | 621 | ||||
Line Number | 21493 | ||||
Interp Status | --- | ||||
Final Accepted Text | |||||
Summary | 0001541: Overabundance of parentheses in atoi() example | ||||
Description | On https://pubs.opengroup.org/onlinepubs/9699919799/functions/atoi.html the example has redundant parentheses. | ||||
Desired Action | Change if (argc < 2 || ((minutes_to_event = atoi (argv[1]))) <= 0) { to if (argc < 2 || (minutes_to_event = atoi (argv[1])) <= 0) { | ||||
Tags | tc3-2008 |
Date Modified | Username | Field | Change |
---|---|---|---|
2021-12-21 09:43 | andras_farkas | New Issue | |
2021-12-21 09:43 | andras_farkas | Name | => Andras Farkas |
2021-12-21 09:43 | andras_farkas | Section | => atoi |
2022-02-17 17:09 | Don Cragun | Page Number | => 621 |
2022-02-17 17:09 | Don Cragun | Line Number | => 21493 |
2022-02-17 17:09 | Don Cragun | Interp Status | => --- |
2022-02-17 17:09 | Don Cragun | Status | New => Resolved |
2022-02-17 17:09 | Don Cragun | Resolution | Open => Accepted |
2022-02-17 17:09 | Don Cragun | Tag Attached: tc3-2008 | |
2022-05-19 08:36 | geoffclare | Status | Resolved => Applied |
2024-06-11 09:07 | agadmin | Status | Applied => Closed |