Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/ProgramCall.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ class ProgramCall {
this.xml = `<pgm name='${program}'`;
if (options.lib) this.xml += ` lib='${options.lib}'`;
if (options.func) this.xml += ` func='${options.func}'`;
if (options.mode) this.xml += ` mode='${options.mode}'`;
this.xml += ` error='${options.error || 'fast'}'>`;
}
}

/**
* @private
Expand Down