diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 12:56:31 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:31 +0100 |
commit | 2a9517575d7e027f7aae2a0d0abda61ca58ce0a1 (patch) | |
tree | a56bade1a42eae9ab731b1fd7bb2d85cabc0ba35 /sal | |
parent | a81dca114b355a32cd903ea308c7edc1d23d3174 (diff) |
WaE: comparison between signed and unsigned integer expressions
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/profile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/profile.cxx b/sal/osl/w32/profile.cxx index b44758e21058..1040a890ea2f 100644 --- a/sal/osl/w32/profile.cxx +++ b/sal/osl/w32/profile.cxx @@ -2396,7 +2396,7 @@ static sal_Bool lookupProfile(const sal_Unicode *strPath, const sal_Unicode *str { static const sal_Char *SubDirs[] = SVERSION_DIRS; - int i = 0; + unsigned i = 0; pStr = aTmpPath + nPos; for (i = 0; i < SAL_N_ELEMENTS(SubDirs); i++) |