diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-11 21:54:26 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-11 21:54:26 +0200 |
commit | 1dd70048aed615cde08f96709ca6a00ebb4ae6cd (patch) | |
tree | f62a8e1a0665c80187dc6f559460fc843bacb71a /extension/time.c | |
parent | 5816cab836fbab1fc6bba3a3f69e6ae98b13daf0 (diff) | |
download | egawk-1dd70048aed615cde08f96709ca6a00ebb4ae6cd.tar.gz egawk-1dd70048aed615cde08f96709ca6a00ebb4ae6cd.tar.bz2 egawk-1dd70048aed615cde08f96709ca6a00ebb4ae6cd.zip |
Remove incorrect * on ext_id in extensions and in doc.
Diffstat (limited to 'extension/time.c')
-rw-r--r-- | extension/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/time.c b/extension/time.c index 01be7784..7451b258 100644 --- a/extension/time.c +++ b/extension/time.c @@ -79,7 +79,7 @@ vms_fake_nanosleep(struct timespec *rqdly, struct timespec *rmdly) #define N_(msgid) msgid static const gawk_api_t *api; /* for convenience macros to work */ -static awk_ext_id_t *ext_id; +static awk_ext_id_t ext_id; static const char *ext_version = "time extension: version 1.0"; static awk_bool_t (*init_func)(void) = NULL; |