jf2atom.c: remove hardcoded xml:lang="en" - jfconvert - JSON Feed (subset) to sfeed or Atom converter
 (HTM) git clone git://git.codemadness.org/jfconvert
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4aa42605cebde991189c88f08163b07c9ce44560
 (DIR) parent 25c567e55f7c5b507bac399b684f2a85ecd1221d
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Tue, 10 Sep 2024 00:36:59 +0200
       
       jf2atom.c: remove hardcoded xml:lang="en"
       
       Diffstat:
         M jf2atom.c                           |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/jf2atom.c b/jf2atom.c
       @@ -232,7 +232,7 @@ main(int argc, char *argv[])
                }
        
                fputs("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
       -              "<feed xmlns=\"http://www.w3.org/2005/Atom\" xml:lang=\"en\">\n", stdout);
       +              "<feed xmlns=\"http://www.w3.org/2005/Atom\">\n", stdout);
        
                switch (parsejson(processnode)) {
                case JSON_ERROR_MEM: