Andrew Talbot : wineps.drv: Avoid signed-unsigned integer comparisons.

Alexandre Julliard julliard at winehq.org
Tue Mar 5 12:59:17 CST 2013


Module: wine
Branch: master
Commit: 97295b3a36dc22edcc8ee02fc4f1f33c7b95e9e0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=97295b3a36dc22edcc8ee02fc4f1f33c7b95e9e0

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Mar  4 23:01:20 2013 +0000

wineps.drv: Avoid signed-unsigned integer comparisons.

---

 dlls/wineps.drv/afm2c.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/wineps.drv/afm2c.c b/dlls/wineps.drv/afm2c.c
index 3f8b0ce..a0427e5 100644
--- a/dlls/wineps.drv/afm2c.c
+++ b/dlls/wineps.drv/afm2c.c
@@ -187,7 +187,7 @@ void PSDRV_AFM2C(const AFM *afm)
 {
     char    buffer[256];
     FILE    *of;
-    int     i;
+    unsigned int i;
 
     lstrcpynA(buffer, afm->FontName, sizeof(buffer) - 2);
 




More information about the wine-cvs mailing list