diff options
author | Filipe Coelho <falktx@falktx.com> | 2019-03-18 08:33:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 08:33:50 +0100 |
commit | 59550f67ee357c82886816391aaeefd6448e8eb7 (patch) | |
tree | dc7a7a6714975d8ccda2f8da55064a7b2d4eda50 /common/JackDebugClient.h | |
parent | bb3f5cb2963dc74ba045a1553e05f755af8623cc (diff) | |
download | jack2-59550f67ee357c82886816391aaeefd6448e8eb7.tar.gz |
Fix client UUID gen, and some warnings (#440)
* Fix generation of client uuid
Signed-off-by: falkTX <falktx@falktx.com>
* Remove all client properties when removed; Cleanup a few things
Signed-off-by: falkTX <falktx@falktx.com>
* Make all uuid function arguments use jack_uuid_t type; Fix warnings
Signed-off-by: falkTX <falktx@falktx.com>
* Rework uuids to never be int, more cleanup
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat (limited to 'common/JackDebugClient.h')
-rw-r--r-- | common/JackDebugClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/JackDebugClient.h b/common/JackDebugClient.h index efe71dee..9e82f1d4 100644 --- a/common/JackDebugClient.h +++ b/common/JackDebugClient.h @@ -68,7 +68,7 @@ class JackDebugClient : public JackClient JackDebugClient(JackClient* fTheClient); virtual ~JackDebugClient(); - virtual int Open(const char* server_name, const char* name, int uuid, jack_options_t options, jack_status_t* status); + virtual int Open(const char* server_name, const char* name, jack_uuid_t uuid, jack_options_t options, jack_status_t* status); int Close(); virtual JackGraphManager* GetGraphManager() const; |