net/onedrive: bug fix local patch

While here, remove debug

PR:		237638
Submitted by:	Hiroo Ono <hiroo.ono+freebsd@gmail.com> (maintainer)
This commit is contained in:
Steve Wills 2019-04-30 10:46:07 +00:00
parent 5ff375083b
commit f66a34e833
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500474
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= onedrive
DISTVERSIONPREFIX= v
DISTVERSION= 2.3.3
PORTREVISION= 1
CATEGORIES= net
MAINTAINER= hiroo.ono+freebsd@gmail.com
@ -19,7 +20,6 @@ USES= gmake pkgconfig sqlite
USE_GITHUB= yes
GH_ACCOUNT= abraunegg
DFLAGS+= -g
PKGCONFIG= pkgconf
MAKE_ARGS= DC=ldc2
INSTALL_TARGET= install.noservice

View File

@ -12,7 +12,9 @@ struct inotify_event
uint32_t mask; /* Watch mask. */
uint32_t cookie; /* Cookie to synchronize two events. */
uint32_t len; /* Length (including NULLs) of name. */
char[] name; /* Name. */
char[0] name; /* Name. */
@disable this(this);
};