projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e52adf
)
Fix small indentation error in last commit
author
Pierre Muller
<muller@sourceware.org>
Mon, 2 Sep 2013 13:11:13 +0000
(13:11 +0000)
committer
Pierre Muller
<muller@sourceware.org>
Mon, 2 Sep 2013 13:11:13 +0000
(13:11 +0000)
gdb/windows-nat.c
patch
|
blob
|
history
diff --git
a/gdb/windows-nat.c
b/gdb/windows-nat.c
index a45b825ed74f58735a14dfff1905d0ae5916e5e1..47594f1c8c58bfa33b1e8f6f4223e99fa1f58b83 100644
(file)
--- a/
gdb/windows-nat.c
+++ b/
gdb/windows-nat.c
@@
-2334,7
+2334,7
@@
windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
(LPVOID) (uintptr_t) memaddr, writebuf,
len, &done);
if (!success)
- lasterror = GetLastError ();
+ lasterror = GetLastError ();
FlushInstructionCache (current_process_handle,
(LPCVOID) (uintptr_t) memaddr, len);
}
@@
-2346,7
+2346,7
@@
windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
(LPCVOID) (uintptr_t) memaddr, readbuf,
len, &done);
if (!success)
- lasterror = GetLastError ();
+ lasterror = GetLastError ();
}
if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
return done;