Displaying 3 results from an estimated 3 matches for "9ed635e".
2018 Sep 17
0
[PATCH nbdkit 1/3] common: isaligned: Use uint64_t instead of unsigned int.
...d have no effect. However it's probably better to pass the
full type explicitly rather than using an implicit truncation.
---
common/include/isaligned.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/common/include/isaligned.h b/common/include/isaligned.h
index e693820..9ed635e 100644
--- a/common/include/isaligned.h
+++ b/common/include/isaligned.h
@@ -36,13 +36,14 @@
#include <assert.h>
#include <stdbool.h>
+#include <stdint.h>
#include "ispowerof2.h"
/* Return true if size is a multiple of align. align must be power of 2.
*/
sta...
2018 Sep 17
3
Re: [PATCH nbdkit 1/3] common: isaligned: Use uint64_t instead of unsigned int.
...s.microsoft.com/en-us/cpp/c-language/conversions-from-unsigned-integral-types?view=vs-2017
Nir
> ---
> common/include/isaligned.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/common/include/isaligned.h b/common/include/isaligned.h
> index e693820..9ed635e 100644
> --- a/common/include/isaligned.h
> +++ b/common/include/isaligned.h
> @@ -36,13 +36,14 @@
>
> #include <assert.h>
> #include <stdbool.h>
> +#include <stdint.h>
>
> #include "ispowerof2.h"
>
> /* Return true if size is a multi...
2018 Sep 17
4
[PATCH nbdkit 0/3] Add partitioning plugin.
nbdkit partitioning boot.img swap.img root.img
... creates a virtual disk by adding a partition table.
In ancient times Xen used to do this.
Rich.