Changeset 56336 in vbox for trunk/src/bldprogs
- Timestamp:
- Jun 10, 2015 11:34:34 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100924
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scmsubversion.cpp
r56330 r56336 757 757 if (RT_SUCCESS(rc)) 758 758 { 759 apr_status_t rc = g_pfnAprInitialize();760 if (rc == 0)759 apr_status_t rcApr = g_pfnAprInitialize(); 760 if (rcApr == 0) 761 761 { 762 762 ScmVerbose(NULL, 1, "Found subversion APIs.\n"); … … 765 765 else 766 766 { 767 ScmVerbose(NULL, 0, "apr_initialize failed: %#x (%d)\n", rc , rc);767 ScmVerbose(NULL, 0, "apr_initialize failed: %#x (%d)\n", rcApr, rcApr); 768 768 AssertMsgFailed(("%#x (%d)\n", rc, rc)); 769 769 }
Note:
See TracChangeset
for help on using the changeset viewer.