gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Petter Reinholdtsen
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1891-g090deff
Date: Mon, 21 Apr 2014 18:35:09 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  090deffef2431a40846cb672ba5524eb02eacf80 (commit)
      from  e39dd19366050f33c5b3413ba0043aecb23c89ea (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=090deffef2431a40846cb672ba5524eb02eacf80


commit 090deffef2431a40846cb672ba5524eb02eacf80
Author: Petter Reinholdtsen <address@hidden>
Date:   Mon Apr 21 20:35:04 2014 +0200

    Avoid test that is always true on platforms where char is unsigned, by 
storing the result from getopt() in an int.

diff --git a/gui/dump/dump.cpp b/gui/dump/dump.cpp
index 729f8df..f612991 100644
--- a/gui/dump/dump.cpp
+++ b/gui/dump/dump.cpp
@@ -120,7 +120,7 @@ DumpGui::init(int argc, char **argv[])
 
     optind = 0;
     opterr = 0;
-    char c;
+    int c;
     while ((c = getopt(argc, *argv, "D:S:T:")) != -1) {
         if (c == 'D') {
             // Terminate if no filename is given.

-----------------------------------------------------------------------

Summary of changes:
 gui/dump/dump.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]