mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
Fix warnings and indentation
svn path=/trunk/; revision=25592
This commit is contained in:
parent
e51baab788
commit
50d8fb4688
3 changed files with 176 additions and 178 deletions
|
@ -284,7 +284,7 @@ int command(const char *fmt, ...)
|
|||
{
|
||||
va_list ap;
|
||||
int r;
|
||||
void (*oldintr)(int), cmdabort(int);
|
||||
void (*oldintr)(int);
|
||||
|
||||
abrtflag = 0;
|
||||
if (debug) {
|
||||
|
@ -335,7 +335,7 @@ getreply(expecteof)
|
|||
register int dig;
|
||||
register char *cp;
|
||||
int originalcode = 0, continuation = 0;
|
||||
void (*oldintr)(int), cmdabort(int);
|
||||
void (*oldintr)(int);
|
||||
int pflag = 0;
|
||||
char *pt = pasv;
|
||||
|
||||
|
|
|
@ -2249,7 +2249,7 @@ BOOL pe_load_debug_directory(const struct process* pcs, struct module* module,
|
|||
const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
|
||||
const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg)
|
||||
{
|
||||
BOOL ret;
|
||||
BOOL ret = FALSE;
|
||||
int i;
|
||||
struct msc_debug_info msc_dbg;
|
||||
|
||||
|
@ -2261,8 +2261,6 @@ BOOL pe_load_debug_directory(const struct process* pcs, struct module* module,
|
|||
|
||||
_SEH_TRY
|
||||
{
|
||||
ret = FALSE;
|
||||
|
||||
/* First, watch out for OMAP data */
|
||||
for (i = 0; i < nDbg; i++)
|
||||
{
|
||||
|
|
|
@ -109,7 +109,7 @@ BOOL WINAPI StackWalk(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
|
|||
|
||||
if (curr_mode == stm_start)
|
||||
{
|
||||
THREAD_BASIC_INFORMATION info;
|
||||
/*THREAD_BASIC_INFORMATION info;*/
|
||||
|
||||
if ((frame->AddrPC.Mode == AddrModeFlat) &&
|
||||
(frame->AddrFrame.Mode != AddrModeFlat))
|
||||
|
|
Loading…
Reference in a new issue