mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
Attempt to fix make patch by changing eol style
Reported by: pkg-fallout
This commit is contained in:
parent
e84d3f8bb4
commit
af1131c8ae
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=439136
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user