ports/emulators/open-vm-tools/files/patch-vmhgfs-os.c
Tijl Coosemans cfea1fe89d - Fix build with clang and recent kernel API changes.
- Use new style LIB_DEPENDS.

PR:		173038, 174290, 180499
Submitted by:	Garrett Cooper <yaneurabeya@gmail.com>
Approved by:	swills (maintainer)
2013-10-19 14:39:55 +00:00

11 lines
322 B
C

--- modules/freebsd/vmhgfs/os.c.orig
+++ modules/freebsd/vmhgfs/os.c
@@ -647,7 +647,7 @@
OS_THREAD_T *newThread) // OUT
{
return compat_kthread_create(function, parameter,
- newThread, 0, 0, threadName);
+ newThread, 0, 0, "%s", threadName);
}