diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-03 14:27:51 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-08-03 14:27:51 -0600 |
| commit | ff6613d40afa4eecf8c1ec49ae75ee38daf44e03 (patch) | |
| tree | 25b4c715b71e67964d62efbb4ae7e1cc899f7745 /src/02/04/tuple.c | |
| parent | e291a2c6b57af1889010529031e07d5236fc1570 (diff) | |
Store Tuples in the hash
Diffstat (limited to 'src/02/04/tuple.c')
| -rw-r--r-- | src/02/04/tuple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/02/04/tuple.c b/src/02/04/tuple.c index 4e27015..20e26ed 100644 --- a/src/02/04/tuple.c +++ b/src/02/04/tuple.c @@ -1,7 +1,7 @@ #include "stdlib.h" #include "tuple.h" -Tuple *tuple_initialize(int key, int value) +Tuple *tuple_initialize(int key, void *value) { Tuple *tuple = malloc(sizeof(Tuple)); tuple->key = key; |
