arguments handling for bacwpm
Brought to you by:
skarg
Issue with arguments handling for bacwpm
e.g.
bacwpm 938026 2 1 85 0 -1 4 100 2 2 85 0 -1 4 100
Error: tag=4294967295 - it must be less than 16
Think the following is a fix ?
--- a/apps/writepropm/main.c
+++ b/apps/writepropm/main.c
@@ -302,8 +302,8 @@ int main(int argc, char *argv[])
wpm_object = Write_Access_Data;
args_remaining = (argc - 2);
arg_sets = 0;
Anonymous
For RPM and WPM, the array index is passed within square brackets, or no brackets when not used, instead of -1 when not used.
bacwpm 938026 2 1 85 0 4 100 2 2 85 0 4 100
bacwpm 938026 2 1 87[1] 0 4 100 2 2 87[1] 0 4 100
(yes, totally fictional example since priority-array is not writable)