]> git.meshlink.io Git - meshlink/commitdiff
Don't use errno as a local variable, because it's a macro.
authorGuus Sliepen <guus@sliepen.org>
Tue, 29 Jul 2014 16:21:44 +0000 (18:21 +0200)
committerGuus Sliepen <guus@sliepen.org>
Tue, 29 Jul 2014 16:21:44 +0000 (18:21 +0200)
src/meshlink.c
src/meshlink.h

index b27d97c6643ec4d0865a2d3bde5630ce2c5c4116..80404370cab427f045fe51bfc64b56c879e21cc9 100644 (file)
@@ -629,8 +629,8 @@ static const char *errstr[] = {
        [MESHLINK_ENOENT] = "No such node",
 };
 
-const char *meshlink_strerror(meshlink_errno_t errno) {
-       return errstr[errno];
+const char *meshlink_strerror(meshlink_errno_t err) {
+       return errstr[err];
 }
 
 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
index a21af570d54c75c81a2b61425acce7524a424af6..85a0cb75ce9ca3b0d82b9bf6fee2a8a9df7848a3 100644 (file)
@@ -69,11 +69,11 @@ struct meshlink_channel {
 /// Get the text for the given MeshLink error code.
 /** This function returns a pointer to the string containing the description of the given error code.
  *
- *  @param errno    An error code returned by MeshLink.
+ *  @param err      An error code returned by MeshLink.
  *
  *  @return         A pointer to a string containing the description of the error code.
  */
-extern const char *meshlink_strerror(meshlink_errno_t errno);
+extern const char *meshlink_strerror(meshlink_errno_t err);
 
 /// Open or create a MeshLink instance.
 /** This function opens or creates a MeshLink instance.