Skip to content

Commit a1565fb

Browse files
committed
Fix syntax error
1 parent cf8633a commit a1565fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext/snmp/snmp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ PHP_FUNCTION(snmp_set_enum_print)
15381538
PHP_FUNCTION(snmp_set_mib_option)
15391539
{
15401540
zend_long opt;
1541-
bool val;
1541+
bool val;
15421542

15431543
if (zend_parse_parameters(ZEND_NUM_ARGS(), "lb", &opt, &val) == FAILURE) {
15441544
RETURN_THROWS();
@@ -1582,7 +1582,7 @@ PHP_FUNCTION(snmp_set_string_output_format)
15821582
/* {{{ Set output format option. */
15831583
PHP_FUNCTION(snmp_set_output_option)
15841584
{
1585-
zend_long opt,
1585+
zend_long opt;
15861586
bool val;
15871587

15881588
if (zend_parse_parameters(ZEND_NUM_ARGS(), "lb", &opt, &val) == FAILURE) {

0 commit comments

Comments
 (0)