aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2012-03-09 18:14:13 +0100
committerAndreas Schneider <asn@cryptomilk.org>2012-03-09 18:14:13 +0100
commita3cf1e4acc83d0d8e8116d4d3055b0a754827682 (patch)
tree785c16476b4a259e84c626422455c2cfb23f799a
parent62657d5f878a1e4431ec592b2d50888979b8cc42 (diff)
downloadlibssh-a3cf1e4acc83d0d8e8116d4d3055b0a754827682.tar.gz
libssh-a3cf1e4acc83d0d8e8116d4d3055b0a754827682.tar.xz
libssh-a3cf1e4acc83d0d8e8116d4d3055b0a754827682.zip
Fix typo.
-rw-r--r--SubmittingPatches2
-rw-r--r--src/threads/pthread.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/SubmittingPatches b/SubmittingPatches
index 51785ce7..66b54e76 100644
--- a/SubmittingPatches
+++ b/SubmittingPatches
@@ -9,7 +9,7 @@ https://red.libssh.org/
For larger code changes, breaking the changes up into a set of simple
patches, each of which does a single thing, are much easier to review.
Patch sets like that will most likely have an easier time being merged
-into the Samba code than large single patches that make lots of
+into the libssh code than large single patches that make lots of
changes in one large diff.
Ownership of the contributed code
diff --git a/src/threads/pthread.c b/src/threads/pthread.c
index 72c8ddce..829fa5c6 100644
--- a/src/threads/pthread.c
+++ b/src/threads/pthread.c
@@ -92,7 +92,7 @@ static struct ssh_threads_callbacks_struct ssh_threads_pthread =
.thread_id=ssh_pthread_thread_id
};
-struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(){
+struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(void) {
return &ssh_threads_pthread;
}