mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
- Use new style LIB_DEPENDS. PR: 173038, 174290, 180499 Submitted by: Garrett Cooper <yaneurabeya@gmail.com> Approved by: swills (maintainer)
11 lines
322 B
C
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);
|
|
}
|
|
|
|
|