Skip to content

Commit

Permalink
screwed spacing during my explorations... fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
fogus committed Jul 8, 2010
1 parent a2e9257 commit 40b5f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/table.c
Expand Up @@ -78,7 +78,7 @@ PN potion_table_put(Potion *P, PN cl, PN self, PN key, PN value) {
PN potion_table_remove(Potion *P, PN cl, PN self, PN key) {
vPN(Table) t = (struct PNTable *)potion_fwd(self);
unsigned k = kh_get(PN, t, key);
if (k != kh_end(t)) kh_del(PN, t, k);
if (k != kh_end(t)) kh_del(PN, t, k);
return self;
}

Expand Down

0 comments on commit 40b5f03

Please sign in to comment.