View Issue Details

IDProjectCategoryView StatusLast Update
00015411003.1(2016/18)/Issue7+TC2System Interfacespublic2024-06-11 09:07
Reporterandras_farkas Assigned To 
PrioritynormalSeverityEditorialTypeEnhancement Request
Status ClosedResolutionAccepted 
NameAndras Farkas
Organization
User Reference
Sectionatoi
Page Number621
Line Number21493
Interp Status---
Final Accepted Text
Summary0001541: Overabundance of parentheses in atoi() example
DescriptionOn
https://pubs.opengroup.org/onlinepubs/9699919799/functions/atoi.html
the example has redundant parentheses.
Desired ActionChange
if (argc < 2 || ((minutes_to_event = atoi (argv[1]))) <= 0) {
to
if (argc < 2 || (minutes_to_event = atoi (argv[1])) <= 0) {
Tagstc3-2008

Activities

There are no notes attached to this issue.

Issue History

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