You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@guacamole.apache.org by darchons <gi...@git.apache.org> on 2018/05/28 03:56:48 UTC

[GitHub] guacamole-server pull request #168: GUACAMOLE-470: Fix incompatible pointer ...

GitHub user darchons opened a pull request:

    https://github.com/apache/guacamole-server/pull/168

    GUACAMOLE-470: Fix incompatible pointer type warning under older GCC

    Older versions of GCC (prior to 5.1) emits an "incompatible pointer type" warning when passing `foo(*)[]` as `const foo(*)[]`. This was changed in GCC 5.1, and this patch adds explicit casts to remove the warning under older GCC.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/darchons/guacamole-server guac-470-configurable-terminal-colors

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/guacamole-server/pull/168.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #168
    
----
commit 9c10ddae3b976d1a524de03e612512ebf2991ea7
Author: Jim Chen <nc...@...>
Date:   2018-05-28T03:45:56Z

    GUACAMOLE-470: Fix incompatible pointer type warning under older GCC.
    
    Older versions of GCC (prior to 5.1) emits an "incompatible pointer
    type" warning when passing `foo(*)[]` as `const foo(*)[]`. This was
    changed in GCC 5.1, and this patch adds explicit casts to remove the
    warning under older GCC.

----


---

[GitHub] guacamole-server pull request #168: GUACAMOLE-470: Fix incompatible pointer ...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/guacamole-server/pull/168


---