Opened 7 years ago
Closed 5 years ago
#185 closed defect (fixed)
Typo in fs_util_.info
| Reported by: | canthony | Owned by: | Eric Swenson |
|---|---|---|---|
| Priority: | minor | Milestone: | MR12.7 |
| Component: | Documentation | Version: | MR12.6f |
| Keywords: | Cc: |
Description
In fs_util_.info, the lines:
Syntax:
declare fs_util_$set_bit_count entry (char (*), char (*), fixed bin
(41), fixed bin (35);
call fs_util_$set_bit_count (dir_name, entryname, bit_count, code);
are syntactically incorrect -- they are missing closing parentheses.
Change History (6)
comment:1 by , 7 years ago
comment:2 by , 7 years ago
A reporting error; the second line ("call") is correct in fs_util_.info; only the "dcl" is incorrect.
comment:3 by , 7 years ago
There are actually three issues with this info segment:
In the declaration of fs_util_$list_switches, there is an extra right parenthesis.
In the declaration of fs_util_$set_bit_count, there is a missing right parenthesis.
And in the declaration and call for fs_util_$set_max_length, the declaration and call are reversed (types specified for call and variable specified for declaration.
comment:4 by , 7 years ago
| Milestone: | → MR12.6g |
|---|---|
| Status: | new → accepted |
| Version: | → MR12.6f |
comment:6 by , 5 years ago
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |

Why is the second line, above, syntactically incorrect? The first clearly is.