Skip to content

Commit

Permalink
Merge pull request #584 from jjnicola/fix-strict-prototypes
Browse files Browse the repository at this point in the history
Fix prototype
  • Loading branch information
ArnoStiefvater authored Sep 1, 2021
2 parents 6913753 + 827d671 commit 05845e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Handle script timeout as script preference with ID 0 [#578](https://github.com/greenbone/gvm-libs/pull/578)

### Fixed
- Fix prototypes in mqtt.h. [#584](https://github.com/greenbone/gvm-libs/pull/584)

### Removed

## [21.10] (unreleased)
Expand Down
4 changes: 2 additions & 2 deletions util/mqtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ int
mqtt_init (const char *);

gboolean
mqtt_is_initialized ();
mqtt_is_initialized (void);

void
mqtt_reset ();
mqtt_reset (void);

int
mqtt_publish (const char *, const char *);
Expand Down

0 comments on commit 05845e3

Please sign in to comment.