Skip to content
Snippets Groups Projects
Commit cd95de23 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

dnssec: fix warning (ignored const qualifier)

parent a0f8b715
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ void knot_free_zone_keys(knot_zone_keys_t *keys)
/*!
* \brief Get timestamp of next key event.
*/
const uint32_t knot_get_next_zone_key_event(const knot_zone_keys_t *keys)
uint32_t knot_get_next_zone_key_event(const knot_zone_keys_t *keys)
{
uint32_t result = UINT32_MAX;
......
......@@ -94,7 +94,7 @@ void knot_free_zone_keys(knot_zone_keys_t *keys);
*
* \return Timestamp of next key event.
*/
const uint32_t knot_get_next_zone_key_event(const knot_zone_keys_t *keys);
uint32_t knot_get_next_zone_key_event(const knot_zone_keys_t *keys);
#endif // _KNOT_DNSSEC_ZONE_KEYS_H_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment