mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
util: use the return value of gethosid() as fallback, not the address of the function
Yikes!
This commit is contained in:
parent
10f146ddc8
commit
bea524cb7a
1 changed files with 1 additions and 1 deletions
|
|
@ -2749,7 +2749,7 @@ char *pa_machine_id(void) {
|
|||
#ifndef OS_IS_WIN32
|
||||
/* If no hostname was set we use the POSIX hostid. It's usually
|
||||
* the IPv4 address. Might not be that stable. */
|
||||
return pa_sprintf_malloc("%08lx", (unsigned long) gethostid);
|
||||
return pa_sprintf_malloc("%08lx", (unsigned long) gethostid());
|
||||
#else
|
||||
return NULL;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue