sr_strerror_name(): Add missing SR_ERR_IO entry.

This commit is contained in:
Uwe Hermann 2015-02-11 16:26:12 +01:00
parent 3c5582595a
commit c4f9582714
1 changed files with 2 additions and 0 deletions

View File

@ -139,6 +139,8 @@ SR_API const char *sr_strerror_name(int error_code)
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";
}