summaryrefslogtreecommitdiff
path: root/ddb/db_variables.h
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-21 22:03:23 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-24 23:14:08 +0100
commitf34397dadc2d60c32aa1e42ab96950b61ea22f54 (patch)
tree0325c14fc2133081332fdd47cefc14d0d6d851fb /ddb/db_variables.h
parentc476fec1212370f2a24d79037c65970c1974ce19 (diff)
Modify struct db_variable
* ddb/db_macro.c (db_arg_variable): Make function void. * ddb/db_macro.h (db_arg_variable): Declare void return. * ddb/db_task_thread.c (db_set_default_thread): Make function void. (db_get_task_thread): Make function void. * ddb/db_variables.c (db_set_default_thread, db_get_task_thread, db_arg_variable): Declare void return. (db_read_write_variable): Use void in initialization. * ddb/db_variables.h (db_variable): Make third member return void. [FCN_NULL]: Define void. * i386/i386/db_trace.c (db_i386_reg_value): Make function void.
Diffstat (limited to 'ddb/db_variables.h')
-rw-r--r--ddb/db_variables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ddb/db_variables.h b/ddb/db_variables.h
index 81d4cfe..533c064 100644
--- a/ddb/db_variables.h
+++ b/ddb/db_variables.h
@@ -42,7 +42,7 @@ struct db_variable {
char *name; /* Name of variable */
db_expr_t *valuep; /* pointer to value of variable */
/* function to call when reading/writing */
- long (*fcn)(struct db_variable *, db_expr_t *, int, db_var_aux_param_t);
+ void (*fcn)(struct db_variable *, db_expr_t *, int, db_var_aux_param_t);
short min_level; /* number of minimum suffix levels */
short max_level; /* number of maximum suffix levels */
short low; /* low value of level 1 suffix */
@@ -50,7 +50,7 @@ struct db_variable {
#define DB_VAR_GET 0
#define DB_VAR_SET 1
};
-#define FCN_NULL ((long (*)())0)
+#define FCN_NULL ((void (*)())0)
#define DB_VAR_LEVEL 3 /* maximum number of suffix level */