diff options
author | corvid <devnull@localhost> | 2014-12-21 21:27:57 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-12-21 21:27:57 +0000 |
commit | a614ea631d34d5c6273bfdaeea6a79ce2eb366a1 (patch) | |
tree | f0cc568eadbc5b50c53ea9489f30c23e0f3960fb /src/klist.c | |
parent | 5eb74aa36fd7d0448ac740c2a35fd6d485c27aba (diff) |
more (and indentation in one spot)
Diffstat (limited to 'src/klist.c')
-rw-r--r-- | src/klist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/klist.c b/src/klist.c index 813269a3..e5e695e2 100644 --- a/src/klist.c +++ b/src/klist.c @@ -74,7 +74,7 @@ int a_Klist_insert(Klist_t **Klist, void *Data) a_Klist_get_data((*Klist), (*Klist)->Counter)); Node = dNew(KlistNode_t, 1); - Node->Key = (*Klist)->Counter; + Node->Key = (*Klist)->Counter; Node->Data = Data; dList_insert_sorted((*Klist)->List, Node, Klist_node_by_node_cmp); return (*Klist)->Counter; |