]> sigrok.org Git - libsigrok.git/commitdiff
HACKING: Cosmetics.
authorUwe Hermann <redacted>
Tue, 16 Oct 2012 12:48:39 +0000 (14:48 +0200)
committerUwe Hermann <redacted>
Tue, 16 Oct 2012 12:48:39 +0000 (14:48 +0200)
HACKING

diff --git a/HACKING b/HACKING
index 092be40e601fe2fd29f138e9d650e01fb78e363f..cd7e26556d010ec6034e2c45fcecf9c2f79ca9f7 100644 (file)
--- a/HACKING
+++ b/HACKING
@@ -37,10 +37,10 @@ Random notes
 
  - Never use g_malloc() or g_malloc0(). These functions do not return NULL
    if not enough memory is available but rather lead to an exit() or segfault
-   instead. This behaviour is not acceptable for libsigrok.
+   instead. This behaviour is not acceptable for libraries.
    Use g_try_malloc()/g_try_malloc0() instead and check the return value.
 
- - libsigrok should never print any messages (neither to stdout nor stderr nor
+ - You should never print any messages (neither to stdout nor stderr nor
    elsewhere) "manually" via e.g. printf() or g_log() or similar functions.
    Only sr_err()/sr_warn()/sr_info()/sr_dbg()/sr_spew() should be used.