Displaying 20 results from an estimated 900 matches similar to: "[PATCH] gobject: fix printf conversion specifier"
2012 Apr 26
3
[PATCH 1/3] gobject: NFC generated code formatting fix
---
generator/generator_gobject.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generator/generator_gobject.ml b/generator/generator_gobject.ml
index e4c175b..48ddbf0 100644
--- a/generator/generator_gobject.ml
+++ b/generator/generator_gobject.ml
@@ -391,7 +391,7 @@ let generate_gobject_optargs_source name optargs flags () =
pr "G_DEFINE_TYPE(%s, guestfs_%s,
2012 Mar 28
1
[PATCH] Split gobject sources into 1 file per class
This patch replaces patches 14 and 15 from my previous series. The gtk-doc
output is now reasonable, and we can rely on an automatically generated
guestfs-sections.txt.
Matt
2014 Jun 13
4
[libldm 1/3] relax uuid, zlib version requirements
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 469ea96..0e7e2ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -85,14 +85,14 @@ PKG_CHECK_MODULES([GIO_UNIX], [gio-unix-2.0 >= 2.32.0],
]
)
-PKG_CHECK_MODULES([ZLIB], [zlib >= 1.2.5],
+PKG_CHECK_MODULES([ZLIB], [zlib >= 1.2],
[
2012 Jan 25
2
[PATCH 1/2] gobject: Allow RConstOptString to return an error
RConstOptString cannot return an error in the C api. This makes it a special
case for the GObject api, as all other return types have a corresponding GError
**err argument to return an error. This change removes this special case, and
includes the possibility of an error return in the API. An error is indicated by
setting *err to a non-NULL value.
This change is in preparation for adding a close
2007 Jul 14
0
libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_string.c libswfdec/swfdec_bits.c
libswfdec/swfdec_as_interpret.c | 6 +++---
libswfdec/swfdec_as_string.c | 8 ++++----
libswfdec/swfdec_bits.c | 6 +++---
3 files changed, 10 insertions(+), 10 deletions(-)
New commits:
diff-tree 64695fc1ace7dd173af95cc64686fd1079867638 (from 0a9188fdb36edbe11775ca410f11551090cc7135)
Author: Eric Anholt <eric at anholt.net>
Date: Sat Jul 14 09:17:29 2007 -0700
2020 Sep 28
0
[RFC PATCH 15/19] tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_DATA_WRITE
Joakim Bech <joakim.bech at linaro.org> writes:
> On Fri, Sep 25, 2020 at 01:51:43PM +0100, Alex Benn?e wrote:
>> With this command we are finally updating data to the backing store
>> and cycling the write_count and each successful write. We also include
>> the write count in all response frames as the spec is a little unclear
>> but the example test code
2015 Feb 12
4
[PATCH 1/3] gobject: generate deprecation markers
Generate proper deprecation markers for API documentation and
introspection annotations.
---
generator/gobject.ml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/generator/gobject.ml b/generator/gobject.ml
index 5b07edd..e563610 100644
--- a/generator/gobject.ml
+++ b/generator/gobject.ml
@@ -961,7 +961,8 @@ guestfs_session_close (GuestfsSession *session, GError **err)
2016 Apr 26
0
evolution libsoup and samba bug 765106
Hello everyone,
while i was play around with winhq install
winbind-clients.
After this I never can open evolution with exchange ews connector.
https://bugzilla.gnome.org/show_bug.cgi?id=765106
I patches libsoup by my self
diff -up ./libsoup/soup-auth-ntlm.c.prev ./libsoup/soup-auth-ntlm.c
--- ./libsoup/soup-auth-ntlm.c.prev 2016-04-15 14:18:02.680276592 +0200
+++ ./libsoup/soup-auth-ntlm.c
2017 Jul 07
0
[PATCH v6 3/3] gobject: Add outline guestfs-gobject(3) manual page.
Since we removed gtk doc, we might as well replace it with a
manual page explaining the basics of how to run gjs.
---
.gitignore | 2 ++
docs/guestfs-recipes.pod | 1 +
erlang/examples/guestfs-erlang.pod | 1 +
gobject/Makefile.am | 19 +++++++++++
gobject/guestfs-gobject.pod | 64 ++++++++++++++++++++++++++++++++++++++
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
Hi,
This is an initial implementation of a vhost-user backend for the
VirtIO RPMB device. The device is currently in the draft of the next
VirtIO specification and describes block device which uses combination
of a key, nonce, hashing and a persistent write counter to prevent
replay attacks (hence Replay Protected Memory Block).
It is implemented as a vhost-user device because we want to
2007 Nov 07
0
14 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_script.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_text_field_movie.c
libswfdec/swfdec_as_context.c | 33 --
libswfdec/swfdec_as_interpret.c | 397 +++++++++++++++----------------
libswfdec/swfdec_as_interpret.h | 10
libswfdec/swfdec_net_stream.c | 1
libswfdec/swfdec_script.c | 39 ---
libswfdec/swfdec_sprite_movie.c | 72 +++++
libswfdec/swfdec_tag.c | 2
2015 Feb 06
1
Use z size specifier for printf-ing size_t variable
> On Fri, Feb 6, 2015 at 6:55 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> > On Sun, Jan 25, 2015 at 06:13:13PM -0200, Raphael S Carvalho wrote:
> >> On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> >> > Hello.
> >> >
> >> > Use the z size specifier to printf-ing size_t variables to get rid of
2015 Feb 06
0
Use z size specifier for printf-ing size_t variable
On Fri, Feb 6, 2015 at 6:55 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> On Sun, Jan 25, 2015 at 06:13:13PM -0200, Raphael S Carvalho wrote:
>> On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
>> > Hello.
>> >
>> > Use the z size specifier to printf-ing size_t variables to get rid of gcc
>> > warning
2015 Feb 06
2
Use z size specifier for printf-ing size_t variable
On Sun, Jan 25, 2015 at 06:13:13PM -0200, Raphael S Carvalho wrote:
> On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> > Hello.
> >
> > Use the z size specifier to printf-ing size_t variables to get rid of gcc
> > warning
> > format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int?
> Please, add
2015 Jan 25
0
Use z size specifier for printf-ing size_t variable
On Sat, Nov 22, 2014 at 10:39 AM, Martin Str|mberg <ams at ludd.ltu.se> wrote:
> Hello.
>
> Use the z size specifier to printf-ing size_t variables to get rid of gcc
> warning
> format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int?
Please, add the signed-off line.
>
>
> --
> MartinS
>
> diff --git
2019 Dec 12
5
[PATCH 0/4] Various small build fixes
*** BLURB HERE? ***
Pino Toscano (4):
build: stop shipping files generated by configure
docs: fix out-of-source documentation build
generator: do not generate mlv2v files when not needed
perl: fix path to Build.PL
docs/Makefile.am | 4 ++--
generator/main.ml | 11 +++++++----
perl/Makefile.am | 2 +-
python/Makefile.am | 3 ++-
tests/daemon/Makefile.am |
2007 Mar 22
0
11 commits - libswfdec/swfdec_color.c libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_movie.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_net_stream.h libswfdec/swfdec_pattern.c libswfdec/swfdec_script.c NEWS test/trace
NEWS | 13 +
libswfdec/swfdec_color.c | 2
libswfdec/swfdec_flv_decoder.c | 8 -
libswfdec/swfdec_js_net_stream.c | 16 ++
libswfdec/swfdec_movie.c | 2
libswfdec/swfdec_net_stream.c | 47 ++++++
libswfdec/swfdec_net_stream.h
2014 Nov 22
3
Use z size specifier for printf-ing size_t variable
Hello.
Use the z size specifier to printf-ing size_t variables to get rid of gcc
warning
format ?%08x? expects type ?unsigned int?, but argument 2 has type ?long unsigned int?
--
MartinS
diff --git a/com32/lib/syslinux/initramfs_file.c b/com32/lib/syslinux/initramfs_file.c
index 7eb55b5..9f9fa75 100644
--- a/com32/lib/syslinux/initramfs_file.c
+++ b/com32/lib/syslinux/initramfs_file.c
@@
2019 Dec 12
8
[PATCH v2 0/6] Various small build fixes
*** BLURB HERE? ***
Pino Toscano (6):
build: stop shipping files generated by configure
docs: fix out-of-source documentation build
generator: do not generate mlv2v files when not needed
perl: fix path to Build.PL
rust: fix path to lib.rs
rust: fix list of generator-built files
daemon/Makefile.am | 8 ++++++--
docs/Makefile.am | 4 ++--
generator/main.ml | 11
2007 Mar 16
0
libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_loader_internal.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_xml.c
libswfdec/swfdec_loader.c | 91 +++++++++++++++++++++++++++++++++++--
libswfdec/swfdec_loader.h | 13 +++++
libswfdec/swfdec_loader_internal.h | 2
libswfdec/swfdec_net_stream.c | 1
libswfdec/swfdec_root_movie.c | 4 +
libswfdec/swfdec_xml.c | 9 +--
6 files changed, 111 insertions(+), 9 deletions(-)
New commits:
diff-tree