Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
notification: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
waht committed Mar 21, 2018
1 parent d3a88f3 commit 218c627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/include/kdbnotificationinternal.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ extern "C" {
return 0; \
} \
ELEKTRA_NOTIFICATION_REGISTERFUNC_TYPEDEF (RegisterFuncType, TYPE) \
RegisterFuncType registerFunc = (RegisterFuncType)func; \
RegisterFuncType registerFunc = (RegisterFuncType) func; \
return registerFunc (notificationPlugin, key, variable); \
}

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/internalnotification/internalnotification.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void elektraInternalnotificationUpdateRegisteredKeys (Plugin * plugin, KeySet *
#define INTERNALNOTIFICATION_TYPE(TYPE, VALUE_TYPE, TYPE_NAME, TO_VALUE, CHECK_CONVERSION) \
INTERNALNOTIFICATION_CONVERSION_CALLBACK_SIGNATURE (TYPE_NAME) \
{ \
TYPE * variable = (TYPE *)context; \
TYPE * variable = (TYPE *) context; \
char * end ELEKTRA_UNUSED; \
const char * string = keyValue (key); \
errno = 0; \
Expand Down

0 comments on commit 218c627

Please sign in to comment.