From: Don Breazeal Date: Tue, 3 May 2016 22:54:45 +0000 (-0700) Subject: Fix typos in gdb_pipe function comment X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a1ec3d244a75a6e6a2f54235c26e6b1e3b8a2482;p=deliverable%2Fbinutils-gdb.git Fix typos in gdb_pipe function comment gdb/ChangeLog: 2016-05-03 Don Breazeal * serial.h (gdb_pipe): Fix argument names in comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8627cb7072..78b3abba8b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-05-03 Don Breazeal + + * serial.h (gdb_pipe): Fix argument names in comment. + 2016-05-03 Pedro Alves PR python/20037 diff --git a/gdb/serial.h b/gdb/serial.h index 10b0643419..84373f57ca 100644 --- a/gdb/serial.h +++ b/gdb/serial.h @@ -75,8 +75,8 @@ extern void serial_ref (struct serial *scb); extern void serial_unref (struct serial *scb); -/* Create a pipe, and put the read end in files[0], and the write end - in filde[1]. Returns 0 for success, negative value for error (in +/* Create a pipe, and put the read end in FILDES[0], and the write end + in FILDES[1]. Returns 0 for success, negative value for error (in which case errno contains the error). */ extern int gdb_pipe (int fildes[2]);