mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
b1e23d9d9b
such as never including unistd.h and using close() on a FILE stream.
12 lines
395 B
Plaintext
12 lines
395 B
Plaintext
--- lib/widgetlib/widgetbasic/examples/example6/videoPlayer.cpp.orig Sun Jan 23 17:00:48 2000
|
|
+++ lib/widgetlib/widgetbasic/examples/example6/videoPlayer.cpp Sun Jan 23 17:01:26 2000
|
|
@@ -96,7 +96,7 @@
|
|
str=strlist.first();
|
|
if (str != NULL) {
|
|
KURL url( str );
|
|
- char *path = url.path();
|
|
+ const char *path = url.path();
|
|
open(&url);
|
|
cout << "dropped:"<<path<<endl;
|
|
}
|