]> sigrok.org Git - libsigrok.git/blobdiff - src/error.c
uni-t-ut181a: silence compiler warning, use of uninitialized variable
[libsigrok.git] / src / error.c
index f87797528088d4e946a5ae884352064843ce7a84..15a25a0033a185e5e72c852ae1cdd64c72d0c3bb 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "libsigrok.h"
+#include <config.h>
+#include <libsigrok/libsigrok.h>
 
 /**
  * @file
@@ -78,6 +78,10 @@ SR_API const char *sr_strerror(int error_code)
                return "timeout occurred";
        case SR_ERR_CHANNEL_GROUP:
                return "no channel group specified";
+       case SR_ERR_DATA:
+               return "data is invalid";
+       case SR_ERR_IO:
+               return "input/output error";
        default:
                return "unknown error";
        }
@@ -129,6 +133,10 @@ SR_API const char *sr_strerror_name(int error_code)
                return "SR_ERR_TIMEOUT";
        case SR_ERR_CHANNEL_GROUP:
                return "SR_ERR_CHANNEL_GROUP";
+       case SR_ERR_DATA:
+               return "SR_ERR_DATA";
+       case SR_ERR_IO:
+               return "SR_ERR_IO";
        default:
                return "unknown error code";
        }