Date: Sat, 22 Apr 2017 08:25:59 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439136 - head/games/openbubbles/files Message-ID: <201704220825.v3M8PxtY075853@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sat Apr 22 08:25:59 2017 New Revision: 439136 URL: https://svnweb.freebsd.org/changeset/ports/439136 Log: Attempt to fix make patch by changing eol style Reported by: pkg-fallout Modified: head/games/openbubbles/files/patch-src_BFont.cpp (contents, props changed) Modified: head/games/openbubbles/files/patch-src_BFont.cpp ============================================================================== --- head/games/openbubbles/files/patch-src_BFont.cpp Sat Apr 22 07:34:50 2017 (r439135) +++ head/games/openbubbles/files/patch-src_BFont.cpp Sat Apr 22 08:25:59 2017 (r439136) @@ -1,20 +1,20 @@ ---- src/BFont.cpp.orig 2005-02-27 14:29:13 UTC -+++ src/BFont.cpp -@@ -314,7 +314,7 @@ int BFont_TextWidthFont(BFont_Info *Font - /* counts the spaces of the strings */ - static int count (const char *text) - { -- char *p = NULL; -+ const char *p = NULL; - int pos = -1; - int i = 0; - -@@ -339,7 +339,7 @@ void BFont_JustifiedPutStringFont(SDL_Su - int dif; - - char *strtmp; -- char *p; -+ const char *p; - int pos = -1; - int xpos = 0; - +--- src/BFont.cpp.orig 2017-04-22 08:18:12 UTC ++++ src/BFont.cpp +@@ -314,7 +314,7 @@ int BFont_TextWidthFont(BFont_Info *Font + /* counts the spaces of the strings */ + static int count (const char *text) + { +- char *p = NULL; ++ const char *p = NULL; + int pos = -1; + int i = 0; + +@@ -339,7 +339,7 @@ void BFont_JustifiedPutStringFont(SDL_Su + int dif; + + char *strtmp; +- char *p; ++ const char *p; + int pos = -1; + int xpos = 0; +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704220825.v3M8PxtY075853>