Skip to content

Commit

Permalink
Remove trailing spaces and missing backslashes in CP module
Browse files Browse the repository at this point in the history
  • Loading branch information
tfar committed Feb 25, 2015
1 parent cdb6602 commit 706f38e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/relic_cp.h
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ typedef vbnn_ibs_user_st *vbnn_ibs_user_t;
#define vbnn_ibs_kgc_new(A) \
A = (vbnn_ibs_kgc_t)calloc(1, sizeof(vbnn_ibs_kgc_st)); \
if (A == NULL) { \
THROW(ERR_NO_MEMORY); \
THROW(ERR_NO_MEMORY); \
} \
ec_null((A)->mpk); \
bn_null((A)->msk); \
Expand All @@ -815,8 +815,8 @@ typedef vbnn_ibs_user_st *vbnn_ibs_user_t;
#define vbnn_ibs_kgc_new(A) \
A = (vbnn_ibs_kgc_t)alloca(sizeof(vbnn_ibs_kgc_st)); \
if (A == NULL) { \
THROW(ERR_NO_MEMORY); \
}
THROW(ERR_NO_MEMORY); \
} \
ec_null((A)->mpk); \
bn_null((A)->msk); \
ec_new((A)->mpk); \
Expand Down Expand Up @@ -889,7 +889,7 @@ typedef vbnn_ibs_user_st *vbnn_ibs_user_t;
#define vbnn_ibs_user_new(A) \
A = (vbnn_ibs_user_t)calloc(1, sizeof(vbnn_ibs_user_st)); \
if (A == NULL) { \
THROW(ERR_NO_MEMORY); \
THROW(ERR_NO_MEMORY); \
} \
ec_null((A)->R); \
bn_null((A)->s); \
Expand All @@ -900,8 +900,8 @@ typedef vbnn_ibs_user_st *vbnn_ibs_user_t;
#define vbnn_ibs_user_new(A) \
A = (vbnn_ibs_user_t)alloca(sizeof(vbnn_ibs_user_st)); \
if (A == NULL) { \
THROW(ERR_NO_MEMORY); \
}
THROW(ERR_NO_MEMORY); \
} \
ec_null((A)->R); \
bn_null((A)->s); \
ec_new((A)->R); \
Expand Down

0 comments on commit 706f38e

Please sign in to comment.