Merge pull request #2428 from haukepetersen/ng_fix_netapi

net/ng_netapi: fixed get/set msg type macro names
This commit is contained in:
Hauke Petersen 2015-02-10 21:36:38 +01:00
commit a0c4c89d04

View File

@ -50,12 +50,12 @@ extern "C" {
/** /**
* @brief Message type for setting options of network modules * @brief Message type for setting options of network modules
*/ */
#define NG_NETAPI_MSG_TYPE_SETOPT (0x0203) #define NG_NETAPI_MSG_TYPE_SET (0x0203)
/** /**
* @brief Message type for getting options from network modules * @brief Message type for getting options from network modules
*/ */
#define NG_NETAPI_MSG_TYPE_GETOPT (0x0204) #define NG_NETAPI_MSG_TYPE_GET (0x0204)
/** /**
* @brief Message type for replying to get and set option messages * @brief Message type for replying to get and set option messages