epics-modules / devlib2

Helper library for memory mapped bus access
http://epics-modules.github.io/devlib2/
Other
4 stars 8 forks source link

Linux fix #10

Closed dirk-zimoch closed 4 years ago

dirk-zimoch commented 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.

The other fix is related to #8

AppVeyorBot commented 4 years ago

:x: Build devlib2 1.0.5 failed (commit https://github.com/epics-modules/devlib2/commit/eb6ca993f0 by @dirk-zimoch)

mdavidsaver commented 4 years ago

Applied with some changes as of 1de11dcd8afd02088013e424781c10a03b6b4394. Thanks.