https://sources.debian.org/data/main/w/wmfire/1.2.4-7/debian/patches/08_removed-inline-from-function-with-extern-linkage.patch Description: remove inline from function with extern linkage Fixes FTBFS with gcc 9. Author: Jeremy Sowden Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925858 Last-Update: 2019-06-22 Forwarded: not-needed --- src/wmfire.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/src/wmfire.c +++ b/src/wmfire.c @@ -111,7 +111,7 @@ void change_flame(int); GdkCursor *setup_cursor(); void burn_spot(int, int, int); -inline void draw_fire(unsigned int); +void draw_fire(unsigned int); static void make_wmfire_dockapp(); void read_config(int, char **); void do_help(void); @@ -504,7 +504,7 @@ /* Draw fire */ /******************************************/ -inline void +void draw_fire(unsigned int load) { int x, y, i, j; class='sub right'>
aboutsummaryrefslogtreecommitdiff
path: root/tests/base16.scm
AgeCommit message (Expand)Author
2017-03-16utils: Move base16 procedures to (guix base16)....* guix/utils.scm (bytevector->base16-string, base16-string->bytevector): Move to... * guix/base16.scm: ... here. New file. * tests/utils.scm ("bytevector->base16-string->bytevector"): Move to... * tests/base16.scm: ... here. New file. * Makefile.am (MODULES): Add guix/base16.scm. (SCM_TESTS): Add tests/base16.scm. * build-aux/download.scm, guix/derivations.scm, guix/docker.scm, guix/import/snix.scm, guix/pk-crypto.scm, guix/scripts/authenticate.scm, guix/scripts/download.scm, guix/scripts/hash.scm, guix/store.scm, tests/hash.scm, tests/pk-crypto.scm: Adjust imports accordingly. Ludovic Courtès