Closed dirk-zimoch closed 4 years ago
In explore_write_wf() unsigned nwritten = -1; causes a warning and is not necessary. Initializing to 0 is sufficient. Either nwritten will be updated or when left untouched the alarm will be set anyway.
unsigned nwritten = -1;
The other fix is related to #8
:x: Build devlib2 1.0.5 failed (commit https://github.com/epics-modules/devlib2/commit/eb6ca993f0 by @dirk-zimoch)
Applied with some changes as of 1de11dcd8afd02088013e424781c10a03b6b4394. Thanks.
In explore_write_wf()
unsigned nwritten = -1;
causes a warning and is not necessary. Initializing to 0 is sufficient. Either nwritten will be updated or when left untouched the alarm will be set anyway.The other fix is related to #8