diff options
| author | Christian Göttsche | 2024-05-29 20:38:33 +0200 |
|---|---|---|
| committer | jvoisin | 2024-06-06 16:27:31 +0200 |
| commit | d82ab8d20191a9ebdb83f918c62fc6c32f068b01 (patch) | |
| tree | 8847596b0016a17f5a207f00b8e0002eff0bd349 /src/snuffleupagus.c | |
| parent | 7e7678a0e5927af625e42627ed9f5757ecf9ca89 (diff) | |
Declare file local variables and functions static
Avoid missing prototype warnings by declaring variables and functions
that are only used in a single file static.
Diffstat (limited to 'src/snuffleupagus.c')
| -rw-r--r-- | src/snuffleupagus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snuffleupagus.c b/src/snuffleupagus.c index 53e610a..e549692 100644 --- a/src/snuffleupagus.c +++ b/src/snuffleupagus.c | |||
| @@ -619,7 +619,7 @@ static PHP_INI_MH(OnUpdateConfiguration) { | |||
| 619 | return SUCCESS; | 619 | return SUCCESS; |
| 620 | } | 620 | } |
| 621 | 621 | ||
| 622 | const zend_function_entry snuffleupagus_functions[] = {PHP_FE_END}; | 622 | static const zend_function_entry snuffleupagus_functions[] = {PHP_FE_END}; |
| 623 | 623 | ||
| 624 | zend_module_entry snuffleupagus_module_entry = { | 624 | zend_module_entry snuffleupagus_module_entry = { |
| 625 | STANDARD_MODULE_HEADER, | 625 | STANDARD_MODULE_HEADER, |
