Vladimir Zhelezov
Vladimir Zhelezov
So, is this the reason for this build failure: ``` error: implicit declaration of function 'copy_from_user' [-Werror=implicit-function-declaration] if (copy_from_user( input, buff, len )) { ^~~~~~~~~~~~~~ ``` Edit: Yeah, including ```linux/uaccess.h```...
Just stumbled upon this. Actually it fails even if you do have transactions in the file but point is not in one.
My bad, I was using `unwrap_or_default` to get the `Status` so I was masking the actual error: ```Parse(BadRate(ParseIntError { kind: InvalidDigit }))``` So you can ignore the part that concerns...
Investigating why the call to `wait()` doesn't block when playing a DSD file I found out this. The first two calls to `client.wait(&[mpd::Subsystem::Player])` result in immediate `Ok([])`. Why is the...
Hi, I had a look at the parser and came up with the following which works for me: ```rust impl FromStr for AudioFormat { type Err = ParseError; fn from_str(s:...
I've found these relevant bits in the MPD code base and I've put them together in a gist so I stop cluttering this feed with overly long snippets: https://gist.github.com/zhelezov/585e0dd20cce521f16cd46da00fa3f68 Basically...
> For what it's worth, this recipe will work now if you set `org-chef-prefer-json-ld` to `t`. Thanks, doesn't work at all without this setting. It fixed other sites as well....
Just stumbled upon this issue after trying the following: ``` item_fields: original_year: original_year if original_year > 0 else year album_fields: original_year: original_year if original_year > 0 else year ``` So,...
Shouldn't FreeBSD-kmods have higher priority than the FreeBSD repo. I did bump it higher, just to silence the daily mail saying my drm-kmod succeeds the remote btw.
Reverting the line referenced above doesn't seem to work for me. If I revert it on v3.4.3, I still get unhandled error. If I revert it with poudriere-devel, _all_ packages...